@import url("https://fonts.googleapis.com/css2?family=TASA+Orbiter:wght@400..800&display=swap");
:root {
    --main-color: #393939; /*#a81b07*/
    --secondary: #393939; /*#212121*/
    --button-hover-color: #d01900;
    --login-bg-image: url('../images/loginBg.jpg');
}
body {
    margin: 0;
    font-family: "TASA Orbiter", sans-serif !important; 
    /*'Inter', sans-serif;*/
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.body1 {
    background-image: var(--login-bg-image) !important;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -33;
    background-position: center bottom;
}

.main-container {
    background-size: cover;
    position: relative;
}
body::before {
    content: "";
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 23 88 / 90%), rgb(6 36 85 / 60%), rgb(0 19 41 / 75%));
    z-index: -1;
}

.login-box {
    position: relative;
    z-index: 1;
    background: #231f20a6; /* rgb(255 255 255 / 10%) ;*/
    backdrop-filter: blur(5px);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}
.login-box .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/*        .login-box .logo img {
            max-width: 150px;
            height: auto;
        }*/

    .login-box h2 {
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
        color: #ffffff !important;
        font-size: 22px;
    }

    .login-box p.subheading {
        text-align: center;
        color: #f1f5f9;
        margin-bottom: 24px;
        font-size: 14px;
        margin-top: 5px;
        letter-spacing: 0.4px;
    }

.input-group {
    position: relative;
    margin-bottom: 15px;
}

    .input-group i.fa-id-card, .input-group i.fa-envelope,
    .input-group i.fa-lock {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #231f20;
        z-index: 2;
    }
.clientID {
    position: absolute;
    right: 58px;
    top: 17.4%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #231f20;
    z-index: 10;
}
.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #231f20;
    z-index: 10;
}

.input-group input {
    width: 100%;
    padding: 12px 38px 12px 38px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #1e293b;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.login-box .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
    color: #f1f5f9;
}

    .login-box .options label {
        display: flex;
        align-items: center;
        letter-spacing: 0.5px;
    }

    .login-box .options input[type="checkbox"] {
        margin-right: 8px;
    }

.login-box a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.login-box .signUp {
    color: #072073;
    text-decoration: none;
    letter-spacing: 0.5px;
    /* text-decoration: underline; */
    background: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
}

    .login-box .signUp:hover {
        background: #ffffff;
        color: #000b31;
    }

.login-box button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: var(--main-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

    .login-box button:hover {
        background-color: var(--button-hover-color);
    }

.login-box .signup {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ffffff;
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }

        .login-box .logo img {
            max-width: 160px;
        }
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
}

.info-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: #1e293b;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    width: 90%;
    max-width: 360px;
    padding: 24px;
    text-align: center;
}


    .info-popup .info-content p {
        margin-bottom: 20px;
        font-size: 15px;
        margin-top: 0px;
    }

    .info-popup .info-content button {
        padding: 10px 20px;
        border: none;
        background-color: var(--main-color);
        color: white;
        font-weight: 500;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.3s;
    }

        .info-popup .info-content button:hover {
            background-color: var(--button-hover-color);
        }

    .info-popup img {
        display: block;
        margin: 0 auto 0px;
        filter: grayscale(100%);
    }

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 240px;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.left-content {
    color: #ffffff;
    flex: 1;
    max-width: 500px;
}

    .left-content h1 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .left-content p {
        font-size: 18px;
        line-height: 1.6;
    }

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        text-align: center;
    }

    .left-content, .login-box {
        max-width: 100%;
    }

        .left-content h1 {
            font-size: 32px;
        }

        .left-content p {
            font-size: 16px;
        }
}

.shape-left {
    position: fixed; /* Fixes it to the screen */
    top: 0;
    left: 0;
    height: 100vh; /* Optional: make it full height */
    z-index: 1;
    pointer-events: none; /* Optional: prevents interfering with clicks */
}
/*Button Spin*/
.button {
    position: relative;
    border: none;
    outline: none;
}

    .button:active {
        background: #15283c;
    }

.buttonText {
    transition: all 0.2s;
}

.buttonSpin .buttonText {
    visibility: hidden;
    opacity: 0;
}

.btnNoDrp {
    cursor: no-drop !important;
}
#btnResetLink::after {
    top: 176px;
}
.buttonSpin::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 220px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-spinner 1s ease infinite;
}

@keyframes button-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

/* Increase size */
.options input[type="checkbox"] {
    width: 12px;
    height: 12px;
    transform: scale(1.3); /* optional: smoother scaling */
    cursor: pointer;
    accent-color: var(--main-color); /* Bootstrap blue, or use your theme color */
}

/* Align label text nicely */
.options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

/* Optional hover effect */
.options input[type="checkbox"]:hover {
    filter: brightness(1.1);
}