/**
 * Login-only styles extracted from main.css so /login can skip the full app CSS.
 * Visual rules match the existing login design — do not change look & feel here.
 */

body.form {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.0312rem;
}

/* Bootstrap 4 utility aliases used by the login markup (master loaded both BS4+BS5) */
.font-weight-bold {
    font-weight: 700 !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.login-card {
    background-color: #fff;
    box-shadow: 0px 10px 20px 0px #00000040;
    padding: 50px 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    border-radius: 60px 0px 0px 60px;
}

.login-card .form-group h2 {
    font-size: 30px;
    font-family: 'Nunito', sans-serif;
}

.login-card .inner_auth_page {
    max-width: 520px;
}

.login-card .form-control {
    border: 1px solid #c3c3c3 !important;
    padding: 10px 10px 10px 30px;
    min-height: 50px;
    font-size: 15px;
    margin-bottom: 0px;
    background-color: transparent;
    margin-top: 30px;
    border-radius: 5px !important;
}

.img_div img {
    width: 200px;
}

.login-card .form-control:focus {
    border: 1px solid var(--primary-color) !important;
}

.login-card .form-control::placeholder {
    color: #888888;
    font-size: 15px !important;
}

.height-56 {
    height: 50px;
}

.login-background {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    background-attachment: fixed;
    background-position: center 80%;
    overflow: hidden;
}

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 0px;
    text-align: justify;
    height: auto;
    letter-spacing: 0px;
}

.line-login {
    flex: 1;
    height: 1px;
    background-color: #c3c3c3;
    margin: 0 1px;
}

.logo-image-size {
    height: 50px;
    text-align: center;
}

.logo-image-size img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main_edge_div {
    align-items: center;
    height: 90vh;
}

.main_edge_div .left_content h4 {
    font-size: 18px;
    letter-spacing: 0px;
    font-weight: 600;
}

.main_edge_div .left_content h1 {
    font-size: 60px;
    font-weight: 800;
    margin: 10px 0px 20px 0px;
}

.main_edge_div .left_content img {
    max-width: 450px;
    margin-bottom: 30px;
}

.main_edge_div .left_content p {
    font-size: 20px;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.left_content {
    text-align: center;
}

.input_icon_wrap i,
.input_icon_wrap .fe-auth-icon {
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-size: 15px;
    margin-top: -2px;
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
}

.input_icon_wrap .fe-auth-icon svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

.input_icon_wrap {
    margin-top: 30px;
}

.forget_wrap a {
    font-size: 15px;
    color: var(--primary-color) !important;
    font-weight: 800;
    transition: all .5s ease-in-out;
}

.forget_wrap a:hover {
    text-decoration: underline;
    color: var(--secondary-color) !important;
}

.input_icon_wrap input {
    margin-top: 0px !important;
}

.count_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
    color: #a5adb4;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.count_wrap::before,
.count_wrap::after {
    content: "";
    height: 1px;
    background: #a5adb4;
    flex: 1;
}

.fe-auth-copyright-icon {
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    vertical-align: -0.1em;
    margin-right: 0.15em;
}

.right_powered_text {
    position: unset !important;
}

.fe-auth-copyright-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .play-now {
        width: 170px;
    }

    .main_edge_div .left_content img {
        max-width: 320px !important;
    }
}

@media screen and (max-width: 991px) {
    .main_edge_div .left_content h4 {
        font-size: 16px;
    }

    .main_edge_div .left_content h1 {
        font-size: 36px;
    }

    .main_edge_div .left_content p {
        font-size: 18px;
    }

    .main_edge_div .left_content img {
        max-width: 250px;
    }

    .login-card .form-group h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 767px) {
    .login-background {
        overflow: unset;
        background-attachment: scroll;
    }

    .play-now {
        width: 100%;
        max-width: 262px !important;
    }

    .play-now .ml-2 {
        margin-left: 2rem !important;
    }

    .play-store_btn .btn-box {
        justify-content: center !important;
    }

    .main_edge_div {
        height: 50vh;
    }

    .login-card {
        padding: 40px 20px;
        height: 80vh;
        border-radius: 0px 0px 0px 0px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .main_edge_div .left_content img {
        max-width: 350px !important;
        margin-bottom: 20px !important;
    }

    .main_edge_div .left_content h1 {
        font-size: 40px !important;
        margin: 10px 0px 15px 0px !important;
    }

    .inner_auth_page>.mb-5 {
        margin-bottom: 20px !important;
    }

    .input_icon_wrap {
        margin-top: 20px;
    }
}
