﻿.login-container {
    min-height: 100vh;
    background-color: #4b66b8;
}

.welcome-section {
    background-color: #4b66b8;
    color: white;
    padding: 2rem;
    height: 100%;
}

.login-form-section {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
}

.btn-login {
    background-color: #f9a825;
    border: none;
    padding: 1rem 2.5rem;
    width: 100%;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

    .btn-login:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

    .btn-login:not(:disabled):hover {
        background-color: #f57f17;
    }

.ministry-logo {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.massar-logo {
    max-width: 150px;
    margin-bottom: 2rem;
}

#passwordGroup,
#btnConnect {
    display: none;
}

.validation-summary-errors ul {
    margin-block: 0px !important;
}



.profile-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    text-align: center;
}

.profile-icon img {
    width: 60px;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}


/* Style du lien "Mot de passe oublié ?" */
.forgot-password-link {
    display: inline-block;
    font-size: 14px;
    color: #007bff; /* Couleur bleue par défaut */
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

    /* Changer la couleur au survol (hover) */
    .forgot-password-link:hover {
        color: #0056b3; /* Couleur bleue plus foncée au survol */
        text-decoration: underline; /* Souligner le lien lors du survol */
    }

    /* Option pour le focus (si l'utilisateur clique ou se concentre sur le lien) */
    .forgot-password-link:focus {
        outline: none;
        color: #0056b3;
    }

.fadeout {
    opacity: 0.3;
    transition: opacity 0.3s ease-out;
}


.password-rules-box {
    background-color: #eef6ff;
    border-left: 5px solid #0078d4;
    padding: 12px;
    margin-top: 20px;
    font-size: 14px;
}

    .password-rules-box ul {
        margin-top: 6px;
        line-height: 22px;
    }