﻿.login-main {
    width: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 1.6rem;
    padding-top: 1rem;
    border-radius: 30px;
    box-shadow: 0 0px 1px 0px #0003;
}

.from-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.login-main-content {
    width: 400px;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-direction: column;
    max-height: 800px;
    height: 100%;
}

.login-main-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    margin: 2rem 0;
}

.login-main-title-text {
    color: #01A8A9;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 140%;
    width: 100%;
}

.login-main-title-subtext {
    color: var(--Text-Primary-Text);
    font-size: 2rem;
    font-weight: 400;
    line-height: 140%;
    width: 100%;
}

.login-main-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}
    .login-main-form .btn-link {
        color: var(--DarkBlue-400);
        font-weight: 600;
        padding-bottom: 0px;
    }
    .login-main-form .btn-login {
        padding: .8rem 3.9rem;
        font-size: 2rem;
        font-weight: 800;
    }
.login-input-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-radius: 10rem;
    background: #e8f0fe;
    padding: 0.6rem 0.8rem;
    width: 100%;
    border: 1px solid transparent;
}

    .login-input-wrapper:focus-within {
        border: 1px solid var(--Primary-Primary, #0A34BE);
        box-shadow: 0px 0px 20px 0px rgba(10, 52, 190, 0.20);
    }

    .login-input-wrapper.warning {
        border: 1px solid var(--Status-Invalid, #E03E3E);
        box-shadow: 0px 0px 20px 0px rgba(224, 62, 62, 0.20);
    }

.login-input-icon {
    padding: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4rem;
    background: var(--Pure-White, #FFF);
    color: #0A34BE;
}
    .login-input-icon .form-control {
        border: none;
        outline: none;
    }

    .login-input-icon.warning {
        color: var(--Status-Invalid, #E03E3E);
    }

.login-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    caret-color: var(--Primary-Primary, #0A34BE);
    color: var(--Text-Primary-Text, #141414);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 140%;
    padding: 0.9rem 0;
}

.login-input-warning {
    color: var(--Status-Invalid, #E03E3E);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 140%;
    width: 100%;
    margin-left: 2rem;
}

.login-main-dash {
    flex: 1;
    height: 0.2rem;
    border-radius: 0.2rem;
    background: var(--Background-Background, #F2F2F2);
}
.btn-primary[disabled], .btn-primary[disabled]:focus {
    background-color: var(--Neutrals-400, #B3B3B3);
    border-color: var(--Neutrals-400, #B3B3B3);
}
.root-zalo {
    right: 10px !important;
    bottom: 85px !important;
}
.root-fb {
    bottom: 148px !important;
}
@media (max-width: 1199px) {
    .grecaptcha-badge {
        display: none !important;
    }
    .lg-hidden {
        display: flex;
    }

    .login-main {
        width: 100%;
        height: 100vh;
    }
    .swiper {
        height: calc(100vh - 24rem);
        min-width: unset;
    }

    .login-main-content {
        max-width: 350px;
        padding: 0;
    }
    .root-zalo {
        right: 10px !important;
        bottom: 20px !important;
    }

    .root-fb {
        bottom: 82px !important;
        right: 10px !important;
    }
}


@media (max-width: 767px) {
    .login-main-content {
        width: 350px;
        max-width: 100%;
    }
    .login-slide-maintext {
        font-size: 2rem;
    }
}