/* auth.css - Ajout du style pour le lien de retour */
.back-to-home {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--mjd-blue-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: color 0.3s;
    width: fit-content;
}

.back-to-home:hover {
    color: var(--mjd-blue-light);
}

.back-to-home svg {
    margin-right: 8px;
}

/* Le reste du fichier auth.css reste identique aux versions précédentes */
.auth-body {
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-container {
    background: var(--white);
    padding: 30px 40px 40px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 450px;
}

.auth-container h2 {
    text-align: center;
    color: var(--mjd-blue-dark);
    margin-bottom: 25px;
}

.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 14px; }
.form-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; }

.auth-btn {
    width: 100%;
    background: var(--mjd-blue-dark);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.auth-btn:disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed;
}

.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; margin: 15px 0; }
.checkbox-group input { width: auto; margin-top: 3px; }