*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== PAGE LOGIN ===== */

body.login-body {
    background-image: url('../images/f2.jpeg');
    background-size: cover;
    margin: 0;
    /* background: linear-gradient(135deg, #e7cb68 0%, #f7e295 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.login-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    /* background-image: url('../images/f3.jpeg'); */
    background-size: cover;
    /* width: 560px; */
    backdrop-filter: blur(10px);
    padding: 2.2rem;
    border-radius: 70px 0 70px 0px;
    box-shadow: 0 10px 40px rgba(253, 136, 3, 0.848);
    border: 3px solid rgba(218, 118, 4, 0.951);
    
}




/* ===== EN-TÊTE =====*/
.login-logo {
    padding: 10px;
    background: linear-gradient(135deg, #f0d08c 0%, #ff950a 100%);
    border-radius: 16px;
    margin-bottom: 1.6rem;
    border: 1.6px solid blue;
    color: white;
    text-align: center;
    /* background-color: #ecbe34; */
}


/*  */
.login-logo h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 5rem;
    font-size: 28px;
    font-weight: 950;
    /* color: #021fa2; */
    /* color: rgb(243, 104, 4); */
    /* font-size: 25px; */
    margin: 0;


}

/* .login-logo small {
    opacity: 0.9;
    font-size: 1.3rem;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bolder;
    font-style: oblique;
    word-spacing: 3rem;
} */


.register-title {
    /* color: white; */
    color:#dfdfe3;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
    border-radius: 12px;
    padding: 8px;
    background-color: rgb(254, 164, 19);
    /* background: linear-gradient(135deg, #0530ef 0%, #785607 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}










/* ===== FORMULAIRE EN DEUX COLONNES ===== */
.login-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:8px 40px;
    
}

/* Champs qui prennent toute la largeur */
/* .login-form > div:nth-child(3), Email */
/* .login-form > div:nth-child(4), Entreprise */
/* .login-form > div:nth-child(6), Confirmation mot de passe */
.login-form > div:nth-child(7), /* Conditions */
.login-form > button,
.login-form + div {
    grid-column: 1 / -1;
}


.required {
    color: red;
    margin-left: 2px;
    font-size: 14px;
}

.login-form .form-control {
    border: 2px solid #b0b2b5;
    border-radius: 10px;
    padding: 0.375rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgb(255, 255, 255);
}

.login-form .form-control:focus {
    border-color: #18c9e4;
    box-shadow: 0 0 0 0.2rem rgba(115, 234, 102, 0.267);
    background: white;
}

/* ===== CHAMPS DE FORMULAIRE ===== */
.form-label {
    font-weight: 700;
    color: #060707;
    margin-bottom: 1px;
    margin-top: 1px;
    font-size: 15px;
}


/* ===== CONTENEUR MOT DE PASSE ===== */
.password-container {
    position: relative;
    padding: 0%;
    
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    user-select: none;
    color: var(--gray);
    transition: color 0.3s ease;
}

/* ===== INDICATEUR DE FORCE DU MOT DE PASSE ===== */
.password-strength {
    height: 3px;
    margin-top: 8px;
    border-radius: 2px;
    transition: all 0.3s;
    background: #b0a9a9;
}

.strength-weak {
    background: #dc3545;
    width: 33%;
}

.strength-medium {
    background: #ffb907;
    width: 66%;
}

.strength-strong {
    background: #28a745;
    width: 100%;
}

.password-toggle:hover {
    color: var(--primary);
}





/* ===== BOUTON PRINCIPAL ===== */
.login-btn {
    border:3px solid rgb(248, 247, 247);
    box-shadow: 6px 5px 4px rgb(253, 136, 3);
    cursor: pointer;
    margin-top: 4px;
    background: linear-gradient(135deg, #0531f5 0%, #022a96 100%);
    padding: 0.475rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: white;
    /* margin-top: 1.5rem; */
    width: 100%;
    
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(248, 156, 7, 0.808);
    color: rgb(244, 159, 12);
}

.login-btn:active {
    transform: translateY(0);
}





/* ===== EXIGENCES DU MOT DE PASSE ===== */
.password-requirements {
    font-size: 12px;
    margin-top: 3px;
}

.requirement {
    color: #ef8b6f;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.requirement.met {
    color: #28a745;
}

.requirement i {
    width: 12px;
    font-size: 8px;
}

/* ===== CHECKBOX ===== */
.form-check {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.form-check-label {
    font-size: 13px;
    color: #2b2e34;
    cursor: pointer;
}

.form-check-label a {
    color: #0c36f3;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

#indique {
    font-size: 13px;
    color: #060707;
}






























/* Style général */
.alert {
    position: absolute;
    text-wrap: wrap;
    top: 20px;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    /* font-style: oblique; */
    /* font-weight: 500; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.232);
    animation: slideIn 0.8s ease;
}


/* Succès */
.alert-success {
    position: absolute;
    background: #e9f8f1;
    color: #0f5132;
    border-left: 6px solid #0f5132;
}

/* Erreur */
.alert-danger {
    /* position: absolute; */
    background: #f6c8c3;
    color: #842029;
    border-left: 6px solid #842029;
    /* opacity: 0.9; */
}

/* Info */
.alert-info {
    background: #e7f3ff;
    color: #084298;
    border-left: 6px solid #084298;
}

/* Warning */
.alert-warning {
    background: #cdfbff;
    color: #664d03;
    border-left: 6px solid #664d03;
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0.5;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}





/*