/* ==================================
   DESIGN SPLIT-SCREEN MODERNE - SIGEP
   Couleurs Côte d'Ivoire 🇨🇮
   ================================== */

/* Éliminer le scroll vertical */
html,
body {
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Barre tricolore en haut de toute la page */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right,
            #FF8200 0%, #FF8200 33.33%,
            #FFFFFF 33.33%, #FFFFFF 66.66%,
            #009E60 66.66%, #009E60 100%);
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Container principal */
#mainDiv {
    height: 100vh !important;
}

#mainDiv>.row {
    /* height: 97% !important; */
}

/* Panneau gauche - Image seulement (pas de texte overlay) */
.login-bg-image {
    object-fit: contain;
    background-color: #f8f9fa;
}

/* Conteneur du formulaire */
.login-form-container {
    max-width: 400px;
}

/* Liens */
.form-style a {
    color: #FF8200 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.form-style a:hover {
    color: #009E60 !important;
    text-decoration: underline !important;
}

/* Alertes */
.form-style .alert-danger {
    background: #fff5f5 !important;
    border: 1px solid #ffdddd !important;
    color: #c53030 !important;
    border-radius: 8px !important;
}

.form-style .alert-success {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    color: #15803d !important;
    border-radius: 8px !important;
}

/* Animation d'entrée */
.col-md-6 {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    body::before {
        height: 3px;
    }

    .overlay .text h2 {
        font-size: 32px !important;
    }

    #firstContent {
        font-size: 24px !important;
    }

    #secondContent {
        font-size: 18px !important;
    }
}

/* Effet de chargement subtil */
.form-style form {
    position: relative;
}

/* Badge CNP-PPP */
.bottom-text {
    bottom: 20px;
    font-size: 12px;
    color: #999;
    font-weight: 500;
    letter-spacing: 1px;
}


.sigep-forum-banner-3 {
    display: flex;
    display: flex;
}

.min-w-fit {
    min-width: fit-content;
}

.max-h-100 {
    max-height: 100%;
}

.max-w-100 {
    max-width: 100%;
}

/* Classe pour cacher les champs du formulaire d'inscription */
.signup-field-hidden {
    display: none !important;
}