/* ================= BASE ================= */

body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
}

/* ================= HEADER ================= */

.top-header {
    background: #0b2a5b;
    padding: 10px 0;
    color: #fff;
}

.logo {
    height: 45px;
}

.contact-info span {
    margin-left: 15px;
    font-size: 14px;
}

/* ================= HERO ================= */

.hero {
    position: relative;
    width: 100%;
    background: url("images/background.jpg") no-repeat center / cover;
}



.hero-overlay {
    /*position: absolute;*/
    inset: 0;
    background: rgba(6, 25, 70, 0.88);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ================= LOGIN CARD ================= */

.login-box {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    max-width: 420px;
    margin-left: auto;
}

.login-box h5 {
    font-weight: 600;
}

/* ================= AUTH TABS ================= */

.auth-tabs {
    display: flex;
    background: #eaeaea;
    border-radius: 30px;
    padding: 4px;
}

.auth-tabs .tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
}

.auth-tabs .tab.active {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ================= FORM ELEMENTS ================= */

.form-group {
    margin-bottom: 12px;
}

/* Inputs */
.uniform-input {
    height: 46px;
    font-size: 14px;
    border-radius: 8px;
}

/* Input group */
.uniform-input-group {
    height: 46px;
}

.uniform-input-group .input-group-text {
    background: #f8f9fa;
    font-size: 14px;
}

/* Bootstrap Select */
.uniform-select + .bootstrap-select > .dropdown-toggle {
    height: 46px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.bootstrap-select .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

/* ================= CAPTCHA ================= */

.captcha-box {
    background: #f1f1f1;
    border-radius: 6px;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

/* ================= BUTTONS ================= */

.uniform-btn,
.login-box .btn-primary {
    height: 46px;
    border-radius: 25px;
    font-weight: 600;
    padding: 10px;
}

/* ================= FOCUS STATES ================= */

.form-control:focus,
.bootstrap-select .dropdown-toggle:focus {
    box-shadow: none;
    border-color: #0d6efd;
}
label{
	color: #ffff;
}

/* =========================
   HERO / BACKGROUND SECTION
   ========================= */



/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */

@media (max-width: 991px) {

    /* 1️⃣ Background image as a standalone section */
    .hero {
        height: 45vh;              /* Responsive height */
        background-size: cover;
        background-position: center top;
    }

    /* Hide desktop grid inside hero */
    /*.hero .container,
    .hero .row {
        display: none;
    }*/

    /* Disable overlay height issues */
    .hero-overlay {
        position: absolute;
        height: 100%;
    }

    /* 2️⃣ Form becomes a separate section below */
    .col-lg-5 {
        width: 100%;
        background: #ffffff;
        padding: 20px;
    }

    /* Remove full height behavior */
    .min-vh-100 {
        min-height: auto !important;
    }
}

/* =========================
   SMALL MOBILE POLISH
   ========================= */

@media (max-width: 767px) { 

    .hero{
        min-height:170px;
        max-height:210px;
        width:100%;
        background-position:left top;
    }

    .hero-content{
        z-index:-2;
    }
    .hero-overlay{
        position:unset;
    }

    .formmargin{
        margin-top:55%;
    }

    label{color:#000000;}
}


.btn.dropdown-toggle.btn-light {
  background-color: var(--bs-body-bg) !important;
  background-clip: padding-box !important;
  border: var(--bs-border-width) solid var(--bs-border-color) !important;
}


