@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

:root {
    --white: #FFF;
    --black: #000;
}

body {
    font-family: "Nunito Sans", Poppins;
    font-style: normal;
    background-color: #000;
}

/* Font weight */

.fw_300 {
    font-weight: 300;
}

.fw_400 {
    font-weight: 400;
}

.fw_500 {
    font-weight: 500;
}

.fw_600 {
    font-weight: 600;
}

.fw_700 {
    font-weight: 700;
}

.fw_800 {
    font-weight: 800;
}

/* Font size */

.fs_10 {
    font-size: 10px;
}
.fs_12 {
    font-size: 12px;
}

.fs_14 {
    font-size: 14px;
}
.fs_16 {
    font-size: 14px;
}
.fs_20 {
    font-size: 20px;
}
.fs_26 {
    font-size: 26px !important;
}

/* Line height */
.lh_normal {
    line-height: normal;
}

/* Color */
.text_grey_1 {
    color: #737373;
}
.text_ofwhite{
    color: rgba(255, 255, 255, 0.20);
}
.green_text{
    color: #01F5CB;
}

.form-group {
    margin-top: 15px;
}

.form-group label {
    margin-bottom: 5px;
    padding-left: 12px;
}

.login-img {
    height: 100vh;
    border-right: 1px solid rgba(255, 255, 255, 0.30);
    object-fit: contain;
}

.login-img p {
    padding-top: 12px;
    color: rgba(255, 255, 255, 0.30);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-detail {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.login-detail h2 {
    color: #FFF;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.login-detail p {
    padding-top: 8px;
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-form {
    padding-top: 30px;
}

.login-form label {
    width: 100%;
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.login-form input {
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    padding: 16px;
    background: transparent;
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height:auto;
}

.login-form .forget-password-btn a {
    padding-top: 30px;
    color: #FFF;
    text-align: right;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    display: block;
}
.custom-link-class {
    color: #00E5B3; /* Couleur harmonisée */
    text-decoration: none; /* Supprime le soulignement */
    font-weight: 500; /* Met un peu plus d'emphase */
    transition: color 0.3s ease; /* Ajoute une transition au survol */
}
.custom-link:hover {
    color: #00C39A; /* Couleur différente au survol */
    text-decoration: underline; /* Ajoute un soulignement au survol */
}
/*.login-form button {
    border-radius: 28px;
    background: #01F5CB;
    padding: 12px;
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    border: none;
    margin-top: 34px;
}*/
.login-form button {
    border-radius: 8px; /* Coins légèrement arrondis pour un style plus moderne */
    background: #01F5CB; /* Couleur de fond */
    padding: 10px 20px; /* Ajuste le padding : plus étroit en hauteur, plus large en largeur */
    color: #000; /* Texte noir */
    font-family: Poppins, sans-serif; /* Police moderne, avec une alternative standard */
    font-size: 16px; /* Taille de police standard pour les boutons */
    font-weight: 500; /* Légèrement plus gras pour une meilleure lisibilité */
    line-height: 1.5; /* Espacement vertical dans le texte */
    width: auto; /* Adapte la largeur au contenu, plutôt qu'à 100% */
    border: none; /* Pas de bordure */
    margin-top: 20px; /* Réduit l'espace au-dessus pour une disposition plus compacte */
    cursor: pointer; /* Affiche le curseur de clic */
    transition: all 0.3s ease; /* Animation fluide sur hover */
    text-align: center; /* Centre le texte */
    display: inline-flex; /* Permet l'alignement interne */
    align-items: center; /* Aligne verticalement le texte et les icônes */
    justify-content: center; /* Centre horizontalement le contenu */
}

.btn-form {
    border-radius: 20px;
    background: #01F5CB;
    color: #000;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 150px;
    border: none;
}
/*.btn-form {
    border-radius: 28px;
    background: #01F5CB;
    padding: 12px;
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    border: none;
    margin-top: 34px;
}*/

.login-form label.error {
    position: absolute;
    top: 100%;
    color: rgb(238, 44, 44);
    left: 0;
}

.log-colom1 {
    /* height: 100vh; */
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

.logo-header {
    width: 100%;
    max-width: 150px;
}

.logo-header .mobile-logo {
    display: none;
}

.btn-group {
    cursor: pointer;
    display: flex;
    gap: 10px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #01F5CB;
    border: none;
    border-radius: 50%;
    color: black;
    text-align: center;
    transition: background-color 0.3s ease;
}

    .action-btn:hover {
        background-color: #01F5CB;
    }

    .action-btn i {
        font-size: 16px;
    }
/* Section des liens "Créer un compte" et "Mot de passe oublié" */
.account-options {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacement entre les liens */
    margin-top: 20px;
}

    .account-options a {
        color: #00E5B3; /* Couleur harmonisée */
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease, transform 0.2s ease;
    }

        .account-options a:hover {
            color: #00C39A; /* Couleur différente au survol */
            transform: scale(1.05); /* Légère augmentation de taille au survol */
            text-decoration: underline;
        }

/* Bannière de cookies */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 800px;
    width: 90%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    text-align: left;
    font-family: 'Arial', sans-serif;
    color: #333;
}

    /* Texte */
    .cookie-banner p {
        margin: 0 0 15px;
        font-size: 14px;
        line-height: 1.6;
        color: #4A5568;
    }

.cookie-link {
    color: #4299E1;
    text-decoration: none;
    font-weight: bold;
}

    .cookie-link:hover {
        text-decoration: underline;
    }

/* Boutons */
.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

    .cookie-actions .btn {
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .cookie-actions .btn-primary {
        background-color: #4299E1;
        color: #fff;
        border: none;
    }

        .cookie-actions .btn-primary:hover {
            background-color: #357ABD;
        }

    .cookie-actions .btn-outline-secondary {
        background: none;
        border: 1px solid #CBD5E0;
        color: #4A5568;
    }

        .cookie-actions .btn-outline-secondary:hover {
            background: #EDF2F7;
        }

    .cookie-actions .btn-secondary {
        background: #EDF2F7;
        color: #4A5568;
        border: none;
    }

        .cookie-actions .btn-secondary:hover {
            background: #E2E8F0;
        }
.checkbox {
    margin-top: 15px;
    font-family: "Nunito Sans", "Poppins", sans-serif;
    font-size: 14px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 5px; /* Espace entre la checkbox et la validation */
}

.terms-label {
    display: flex;
    align-items: center;
    gap: 8px; /* Espace entre la checkbox et le texte */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8); /* Texte légèrement adouci */
}

    .terms-label input {
        margin-right: 8px;
        width: 16px;
        height: 16px;
        accent-color: #00E5B3; /* Couleur personnalisée pour la checkbox */
        cursor: pointer;
    }

.terms-link {
    color: #00E5B3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .terms-link:hover {
        color: #00C39A;
        text-decoration: underline;
    }

.validation-message {
    font-size: 12px;
    font-weight: 400;
}

/* Overlay pour couvrir toute la page */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Couleur sombre avec transparence */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner moderne */
.spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .spinner div {
        display: inline-block;
        position: absolute;
        left: 8px;
        width: 16px;
        background: #00e5b3; /* Couleur personnalisée (vibrante) */
        animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    }

        .spinner div:nth-child(1) {
            left: 8px;
            animation-delay: -0.24s;
        }

        .spinner div:nth-child(2) {
            left: 32px;
            animation-delay: -0.12s;
        }

        .spinner div:nth-child(3) {
            left: 56px;
            animation-delay: 0;
        }

@keyframes spinner {
    0% {
        top: 8px;
        height: 64px;
    }

    50%, 100% {
        top: 24px;
        height: 32px;
    }
}

@media screen and (max-width: 1280px) {
    .login-detail h2 {
        padding-top: 30px;
    }
}
@media screen and (max-width: 991px) {
    .login-img {
        height: 70vh;
    }
}

@media screen and (max-width: 768px) {
    .login-section .login-img {
        display: none;

    }
    .log-colom1{
        min-height: 100vh;
    }

}


    @media screen and (max-width: 450px) {

    .login-form button {
      
        padding: 6px;
    }
    /* .company-name,
    .profile-name {
        display: none;
    }

    .logo-header {
        width: 100%;
        max-width: 60px;
    }

    .logo-header .web-logo {
        display: none;
    }

    .logo-header .mobile-logo {
        display: block;
    } */

}
/* 
@media screen and (max-width: 500px) {
    .logo-header .mobile-logo {
        width: 30px;
    }

    .dataTables_length label,
    .dataTables_filter label,
    .dataTables_info {
        font-size: 12px;
    }

} */