@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Anton&family=Cookie&family=Poppins:wght@600&display=swap');

:root {
    /* टेक्स्ट शैडो को एडजस्ट किया गया */
    --bg-text-shadow: 0 2px 4px rgb(13 0 77 / 8%), 0 3px 6px rgb(13 0 77 / 8%), 0 8px 16px rgb(13 0 77 / 8%);
    /* बॉक्स शैडो को डार्क थीम के अनुरूप एडजस्ट किया गया */
    --bg-box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.5); 
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    /* टेक्स्ट को सफ़ेद किया गया */
    color: #ffffff; 
}

/* बॉडी का बैकग्राउंड कलर डार्क किया गया */
body {
    height: 100vh;
    display: flex;
    background-color: #000000; /* पूरी तरह से काला या बहुत गहरा ग्रे */
}

.carousel_section{
    box-shadow: var(--bg-box-shadow);
}
/* side photo css */
section {
    height: 100%;
    width: 50%;
}

.carousel-image {
    height: 100vh;
}

/* कैरोसेल ओवरले (overlay) को गहरा नीला रखा गया */
.carousel-inner::after {
    content: "";
    position: absolute;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 255, 0.284);
}

/* login css */

.logo {
    height: 60px;
    display: flex;
    justify-content: center;
    margin:20px 0;
}

.logo .bluebirdlogo {
    height: 100%;
}

/* लोगो टेक्स्ट का रंग सफ़ेद किया गया */
.logo p {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 30px;
    color: #ffc107; /* सफ़ेद */
    text-shadow: var(--bg-text-shadow);
}

.auth_container {
    height: 80%;
    margin: 50px;
    /* auth_container का बैकग्राउंड गहरा ग्रे किया गया */
    background-color: #1a1a1a; 
    padding: 20px;
    border-radius: 10px;
    /* बॉक्स शैडो को डार्क थीम के अनुरूप एडजस्ट किया गया */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); 
}

#Log_in {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.role_btn {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

/* रोल बटन का रंग */
.role_btn .btns {
    height: 40px;
    width: 200px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    /* बैकग्राउंड को गहरा ग्रे और टेक्स्ट को सफ़ेद किया गया */
    background-color: rgba(93, 102, 116, 0.318); 
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.role_btn .btns:hover{
    /* हॉवर और एक्टिव के लिए नीला/हल्का नीला ग्रेडिएंट रखा गया */
    background-image: linear-gradient(90deg, rgba(76, 185, 236, 0.527), rgba(0, 30, 255, 0.456));
    transition: ease-in-out;
    color: white;
}

.btns.active{
    /* एक्टिव बटन का रंग */
    background-image: linear-gradient(90deg, rgba(76, 185, 236, 0.527), rgba(0, 30, 255, 0.456));
    color: white;
}

.authsection {
    width: 70%;
    margin: 10px;
    display: none;
    text-align: center;
    animation: screen_animation .4s;
}
/* toggle display */
.user_login.active{
    display: block;
}

.employee_login.active{
    display: block;
}

.form-floating {
    margin: 15px 0;
} 

/* इनपुट फील्ड का स्टाइल */
.form-floating .form-control {
    background-color: #333333; /* डार्क इनपुट बैकग्राउंड */
    border: 1px solid #555555; /* हल्की बॉर्डर */
    color: #ffffff; /* टेक्स्ट सफ़ेद */
}
/* इनपुट लेबल का रंग */
.form-floating > label {
    color: #cccccc; /* लेबल का रंग हल्का ग्रे */
}
/* जब इनपुट फोकस्ड हो तो लेबल का रंग */
.form-floating > .form-control:focus ~ label {
    color: #888888; 
}


/* मुख्य ऑथ बटन (Log in / Sign up) */
.auth_btn {
    padding: 15px 30px;
    border: unset;
    border-radius: 15px;
    /* बैकग्राउंड को गोल्डन/पीला किया गया */
    background-color: #ffc107; 
    z-index: 1;
    position: relative;
    font-size: 17px;
    transition: all 250ms;
    overflow: hidden;
    color: #000000; /* टेक्स्ट को काला किया गया */
}

.auth_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    border-radius: 10px;
    /* हॉवर के लिए गहरा गोल्डन/नारंगी */
    background-image: linear-gradient(90deg, #ffa000, #ff6f00); 
    transition: all 250ms;
}

.auth_btn:hover {
    color: #ffffff; /* हॉवर पर टेक्स्ट सफ़ेद */
}

.auth_btn:hover::before {
    width: 100%;
}

.footer_line{
    margin: 20px 0;
}

/* पेज मूव बटन (sign up / Log in) */
.page_move_btn{
    color: #ffc107; /* गोल्डन/पीला */
    cursor: pointer;
    font-weight: bold;
}
.page_move_btn:hover{
    color: #ffa000;
}

/* signup */
#sign_up{
    height: 100%;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
}

.user_signup{
    width: 70%;
    text-align: center;
    animation: screen_animation .4s;
}

/* animation frame */
@keyframes screen_animation {
    0%{
        transform: translateX(50px);
    }
}


/* responsive stuff */

@media(max-width: 30rem){
    .carousel_section{
        display: none;
    }
    #auth_section{
        width: 100%;
    }
    .auth_container
    {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    #Log_in .role_btn .btns{
        width: 90px;
    }
}