
.modal {
    display: none; /* Cache le modal par défaut */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent */
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* Centrage vertical et horizontal */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Adaptation à la largeur */
    max-width: 400px; /* Largeur maximale */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    border-radius: 10px;
}


.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.login-input{
    cursor: pointer;
    background-color: #F7F4DA;
    color: #000000;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    margin-left: 10px; 
    transition: background-color 0.3s ease;
}

.error-text {
    color:red;
}

.login-button {
    display:inline-block;
    background-color: #f9d423; 
    color: #333;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 10px;
}
