.login-container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: -5px;
    background-color: #f0f0f0;
    box-sizing: border-box;
    font-size: 16px;
}

.login-container input:focus {
    outline: none;
}

::placeholder {
    font-size: 16px;
    color: #999;
}

#login-button {
    width: 100%;
    padding: 10px;
    background-color: #f7f7f7; /* Plus clair que #dcdcdc */
    color: #bfbfbf; /* Plus clair que #999 */
    border: none;
    border-radius: 4px;
    cursor: not-allowed;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

#login-button.active {
    background-color: #fe2c55;
    cursor: pointer;
    color: white;
}

#forgot-password {
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
}

#forgot-password a {
    color: grey;
    text-decoration: none;
}

#forgot-password a:hover {
    text-decoration: underline;
    color: black;
}

.formLogin {
    margin-top: 30px;
}

.backbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.backbtn:hover {
    text-decoration: none;
}

#toggle-password {
    position: absolute;
    margin-top: 9px;
    margin-left: -30px;
    font-size: 20px;
    color : grey;
}

.verification-message {
    text-align: center;
    margin-top: 50px;
}

.verification-message h1 {
    font-size: 2em;
    color: #333;
}

.verification-message p {
    font-size: 1.2em;
    color: #666;
}

#redirect-message {
    font-size: 1em;
    color: #999;
    margin-top: 20px;
}

.heading-success {
    margin-bottom: 30px;
}

.text-success {
    padding-left: 5px;
    padding-right: 5px;
}
