/* ===== GLOBAL SETTINGS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

body {
    background:
        linear-gradient(366deg, rgba(244, 224, 232, 0.8) 0%, rgba(244, 230, 236, 0.8) 100%),
        url("images/bg_login.png");
    background-size: revert;
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #33415581;
}

/* ===== MAIN CARD ===== */
#LoginWind {
    width: 70%;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-collapse: separate;
    overflow: hidden;
    border: none;
}

/* ===== HEADER SECTION ===== */
.office-info {
    padding: 30px;
    background: #ffffff;

}

.instruction-text-header {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* font-weight: 700; */
}

.office-info h2 {
    margin: 5px 0;
    font-size: 26px;
    color: #ae1c5d;
    /* font-weight: 800; */
    font-family: 'Poppins', sans-serif;
}

.designation-text {
    font-size: 12.5px;
    color: #475569;
    line-height: 1.6;
    border-left: 4px solid #ae1c5d;
    padding-left: 15px;
    margin-top: 10px;
    /* font-weight: 500; */
}

//* ===== LOGO SLIDER ===== */
.org-logos-slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    /* હેશટેગ માટે હાઈટ થોડી વધારી */
    font-family: 'Poppins', sans-serif;
}

.org-logo {
    display: none;
    flex-direction: column;
    /* લખાણ અને ફોટો ઊભા કરવા માટે */
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 15px 20px 10px 20px;
    /* લખાણ માટે ઉપર જગ્યા રાખી */
    border-radius: 12px;
    position: relative;
}

.org-logo.active {
    display: flex;
    animation: fadeEffect 0.8s ease;
}

/* હેશટેગ બતાવવા માટેનો મેજિક કોડ */
.org-logo::before {
    content: attr(data-hashtag);
    font-size: 13px;
    font-weight: 500;
    color: #ae1c5d;
    letter-spacing: 0.6px;
    opacity: 0;
    transform: translateY(-6px);
    animation: tagFade 0.8s ease forwards;
}

.org-logo.active::before {
    animation-delay: 0.3s;
}

@keyframes tagFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.org-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== SECTIONS (LEFT & RIGHT) ===== */
#About {
    padding: 25px;
    vertical-align: top;
}

.left {
    border-right: 1px solid #a0426cd3;
}

h3 {
    color: #ae1c5d;
    font-size: 18px;
    /* font-weight: 700; */
    text-transform: uppercase;
    border-bottom: 3px solid #ae1c5d;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

/* ===== INFO BOXES ===== */
.track-info-box {
    background: linear-gradient(to right, #ffffff, #fff0fb);
    border: 1px solid #a0426cd3;
    border-left: 5px solid #ae1c5d;
    border-right: 5px solid #ae1c5d;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.login-info-box {
    background: linear-gradient(to right, #ffffff, #fff0fb);
    border: 1px solid #a0426cd3;
    border-left: 5px solid #ae1c5d;
    border-right: 5px solid #ae1c5d;
    padding: 15px;
    border-radius: 11px;
    margin-bottom: 20px;
}


.info-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-content img {
    height: 50px;
    width: auto;
}

.info-content p {
    margin: 0;
    font-size: 13px;
    color: #475569;
    line-height: 1.4;
}

/* ===== FORMS & INPUTS ===== */
input[type=text],
input[type=password] {
    width: 90%;
    padding: 12px;
    margin: 5px 0;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    transition: 0.3s;
}

input:focus {
    outline: none;
    border-color: #ae1c5d;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.submit-btn {
    background: #ae1c5d !important;
    color: white !important;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #a0426cd3 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== FOOTER ===== */
.Design {
    border-top: 1px solid #a0426cd3;
    padding: 15px;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    background: #f8fafc;
}

.Design a {
    color: #ae1c5d;
    text-decoration: none;
}

/* ===== MOBILE RESPONSIVE UPDATED ===== */
@media screen and (max-width: 768px) {
    #LoginWind {
        width: 96% !important;
        margin: 10px auto !important;
        box-shadow: none;
        /* મોબાઈલમાં ક્લીન લુક માટે */
    }

    #LoginWind tr {
        display: flex;
        flex-direction: column;
    }

    /* હેડરને મોબાઈલમાં નાનું અને વ્યવસ્થિત કરવા */
    .header td table tr {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .office-info {
        padding: 15px !important;
        text-align: center;
    }

    .office-info h2 {
        font-size: 18px !important;
    }

    /* લોગો સ્લાઇડર */
    .logo-cell {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
    }


    .org-logos-slider {
        height: 100px !important;
    }

    .org-logo::before {
        font-size: 11px;
    }

    .org-logo img {
        width: 80px;
        height: 80px;
    }

    /* સેક્શન સેટિંગ્સ */
    #About {
        width: 100% !important;
        padding: 15px !important;
        box-sizing: border-box;
    }

    #About.left {
        border-right: none;
        border-bottom: 1px solid #a0426cd3;
    }

    /* ઈન્ફો બોક્સ મોબાઈલ માટે */
    .track-info-box,
    .login-info-box {
        border-radius: 12px !important;
        padding: 12px !important;
        margin-bottom: 15px !important;
    }

    /* બટન અને ઇનપુટ */
    input[type=text],
    input[type=password],
    .submit-btn {
        width: 100% !important;
        height: 45px;
    }
}