/* --- Styles Généraux du Corps et du Conteneur (Thème Blanc/Bleu foncé) --- */
.login-body {
    margin: 0;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background-color: #F8F9FA; /* Fond du body en blanc cassé */
    color: #495057; /* Texte gris foncé par défaut */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.login-container {
    background-color: #FFFFFF; /* Fond du conteneur en blanc */
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Ombre douce */
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid #DEE2E6; /* Bordure grise subtile */
    animation: fadeInScale 0.6s ease-out forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.login-container h2 {
    margin-bottom: 30px;
    color: #0D1B2A; /* Titre en bleu très foncé */
    font-size: 2.2em;
    font-weight: 700;
    text-shadow: none; /* Pas d'ombre sur le texte pour un design plus plat */
    position: relative;
    padding-bottom: 10px;
}

.login-container h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #0D1B2A; /* Accent en bleu très foncé */
    border-radius: 2px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- Champs de Saisie --- */
.login-container input {
    width: calc(100% - 24px);
    padding: 12px;
    font-size: 1em;
    background-color: #F8F9FA; /* Fond de champ en blanc cassé */
    color: #495057; /* Texte gris foncé */
    border: 1px solid #CED4DA; /* Bordure grise */
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-container input::placeholder {
    color: #ADB5BD; /* Placeholder gris moyen */
}

.login-container input:focus {
    outline: none;
    border-color: #0D1B2A; /* Bordure bleu très foncé au focus */
    box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.2); /* Lueur bleu foncé */
}

/* --- Bouton de Soumission --- */
.login-container button {
    width: 100%;
    padding: 14px;
    background-color: #0D1B2A; /* Bouton en bleu très foncé */
    color: #FFFFFF; /* Texte blanc sur bouton bleu foncé */
    border: none;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 27, 42, 0.2);
}

.login-container button:hover {
    background-color: #0A141F; /* Bleu foncé encore plus sombre au survol */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.3);
}
.login-container button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(13, 27, 42, 0.3) inset;
    background-color: #212529;
}

.error-message {
    color: #DC3545; /* Couleur rouge pour l'erreur */
    font-size: 0.95em;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

/* --- Section Photo de Profil --- */
.photo-profil-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #E9ECEF; /* Ligne de séparation gris clair */
    text-align: center;
}

.photo-profil-container label {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #495057; /* Gris foncé pour l'étiquette */
    display: block;
}

#profilePhoto {
    padding: 10px;
    border: 1px solid #CED4DA;
    border-radius: 8px;
    width: calc(100% - 20px);
    max-width: 300px;
    background-color: #F8F9FA;
    color: #495057;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#profilePhoto:focus {
    outline: none;
    border-color: #0D1B2A;
    box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.2);
}

#photoPreview {
    margin-top: 20px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #0D1B2A; /* Bordure bleu très foncé pour l'aperçu */
    box-shadow: 0 0 0 5px rgba(13, 27, 42, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

#photoPreview:hover {
    transform: scale(1.05);
}

/* --- Lien de Compte (Basculement Inscription/Connexion) --- */
.login-container p {
    margin-top: 25px;
    color: #6C757D; /* Gris plus doux pour les infos générales */
    font-size: 0.95em;
}

.login-container p a {
    color: #0D1B2A; /* Bleu très foncé pour les liens */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.login-container p a:hover {
    text-decoration: underline;
    color: #5A687A; /* Nuance de bleu-gris au survol */
}


/* --- Ajustements Responsifs --- */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
        border-radius: 12px;
        width: 95%;
    }
    .login-container h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .login-container h2::after {
        width: 40px;
    }
    .signup-form {
        gap: 15px;
    }
    .login-container input {
        padding: 10px;
        font-size: 0.95em;
    }
    .login-container button {
        padding: 12px;
        font-size: 1em;
    }
    .error-message {
        font-size: 0.9em;
    }
    .photo-profil-container {
        margin-top: 25px;
        padding-top: 15px;
    }
    .photo-profil-container label {
        font-size: 1em;
        margin-bottom: 10px;
    }
    #profilePhoto {
        padding: 8px;
        font-size: 0.9em;
    }
    #photoPreview {
        width: 100px;
        height: 100px;
        margin-top: 15px;
        border-width: 2px;
    }
    .login-container p {
        margin-top: 20px;
        font-size: 0.9em;
    }
}