﻿:root {
    --regular-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

    --primary-color-4: #235AC3;
    --primary-color-3: #1C488A;
    --white-color: #FFFFFF;
    --primary-text-color: #1B2154;
    --gray-color-4: #B4B8BE;
    --gray-color-3: #DBDBDB;
    --gray-color-1: #EFEFEF;
    --gray-color-2: #f1f7ff;
    --gray-color-0: #CCCCCC;
    --language-color: #877E7E;
    --error-color: #F24343;
    --password-tips-color: #596E92;
    --gray-text-color: #8F96A5;
}

.login-page {
    font-family: var(--regular-font);
    overflow: hidden;
    font-size: 14px;
    /* padding: 1em;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100vh;
    font-weight: 400;
}


.section-left {
    flex: 1;
    padding: 24px;
    width: 50%;
}

.section-left .section-left-group{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70%;
}

.short-content{
    height: 60% !important;
}

.super-short-content{
    height: 50% !important;
}

.section-right {
    flex: 1;
    width: 50%;
    background-image: url(../images/images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-bottom: 100px;
    align-items: center;
    padding: 0 50px;
}

.section-right .section-right-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-right .section-right-content .section-right-content-header{
    font-weight: 700;
    color: var(--white-color);
    font-size: 48px;
}

.section-right .section-right-content .section-right-content-text{
    color: var(--white-color);
    font-size: 16px;
}

.section-right .section-right-image{
    /* max-width: 720px; */
    max-width: 610px;
}

.company-logo {
    height: 40px;
    object-fit: cover;
}

.login-page-logo {
    margin-bottom: 0em;
}

.login-form {
    width: 400px;
    margin: auto;
}

.login-title {
    font-weight: 700;
    font-size: 30px;
    color: var(--primary-text-color);
    margin-bottom: 4px;
}

.forgot-title{
    padding-bottom: 16px;
    margin-bottom: 0;
}

.login-content{
    font-weight: 400;
    color:var(--gray-color-4);
    padding-bottom: 10px;
}

.input-wrap {
    margin-bottom: 24px;
}

.input-label {
    color: var(--primary-text-color);
    font-size: 14px;
    font-weight: 500;
}

.input-field {
    margin-top: 8px;
}

.input-field input {
    width: 100%;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid var(--gray-color-3);
    outline: none;
}

.right-img {
    object-fit: fill;
}

.checkbox-wrap {
    display: flex;
    gap: 6px
}

.bonus-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.submit-btn {
    padding: 10px 5px;
    color: var(--white-color);
    width: 100%;
    outline: none;
    border: none;
    transition: 0.2s;
    border-radius: 8px;
    background: var(--primary-color-4);
}

.login-btn {
    margin-top: 24px;
   
}

.submit-btn:hover {
    background: var(--primary-color-3);
}


.submit-btn:active {
    background: var(--primary-color-4);
}

.vector-img {
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.language-group{
    display: flex;
    align-items: center;
    margin-top: 24px;
}


.language-group-select-button{
    cursor: pointer;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-color-1);
    padding: 4px;
    border-radius: 20px;
}

.language-group-select-button:hover{
    background: var(--gray-color-2);
    border-radius: 20px;
}

.language-group-select-dropdown{
    margin-top: 6px;
    border-radius: 6px;
}

.language-group-select-dropdown-item{
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}


.language-group .language-group-title:nth-child(2){
    border-left: 0;
    font-weight: 500;
}

.language-group-title{
    color: var(--language-color);
    font-size: 16px;
    border-left: 1px solid var(--gray-color-0);
    padding: 0 8px;
    cursor: pointer;
}

.language-group-title:hover{
    color: var(--primary-text-color);
}



.language-group-title.current-lang{
    color: var(--primary-text-color);
}



@media only screen and (max-width: 1220px) {
    .section-right {
        display: none !important;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .company-logo {
        height: 36px;
        object-fit: cover;
        margin-bottom: 7em
    }
}

@media only screen and (max-width: 600px) {
    .login-form {
        width: 300px;
    }
}

.form-forgot-password {
    color: var(--primary-color-4);
    text-decoration: none;
    font-weight: 500;
}

.alert {
    margin-bottom: 16px;
    padding: 0;
    line-height: 16px;
    background: transparent;
    border: transparent
}

.alert-danger .danger > ul {
    margin-bottom: 0px;
    color: var(--error-color);
    list-style-type: none;
    font-size: 13px;
    transform: translate(-31px, 0px);
}

.alert-danger .danger > ul > li {
    width: 100%;
    font-weight: 600;
    font-size: 14px;
}

.alert-danger .danger {
    display: flex;
}

.forgot-pass {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forgot-btn {
    margin-top: 12px;
}

.history-back {
    margin-bottom: 18px;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    line-height: 20px;
}

.history-title {
    color: var(--primary-text-color);
    transition: 0.2s;
    font-weight: 600;
    font-size: 16px;
}

.history-title:hover{
    color: var(--primary-color-4);
    transition: 0.2;
}

.history-back .arrow-back {
    margin-right: 4px;
    height: 14px;
    width: 14px;
}

.wait-email.page {
    display: flex;
    flex-direction: column;
}

.forgot-sendmail-img {
    margin-bottom: 48px;
    height: 30vh;
}

@media only screen and (max-height: 700px) {
    .forgot-pass .section-right {
        display: none;
        flex-wrap: wrap;
        flex-direction: column;
    }
}

.password-tips {
    margin-top: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: var(--password-tips-color);
}

.top-input-wrap {
    margin-top: 16px
}


.forgot-section {
    display: flex;
    flex-direction: column;
}

.forgot-input-wrap {
    margin-top: 16px;
}

.forgot-sendmail-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--gray-text-color);
}

.forgot-sendmail-title {
    margin-bottom: 9px;
}

.reset-btn {
    margin-top: 8px
}

.reset-password-img {
    height: 500px;
}

.twofactory-section{
    display: flex;
    flex-direction: column;
    max-width: 450px;
}

.twofactory-title{
    font-weight: 700;
    font-size: 30px;
    color: var(--primary-text-color);
    margin-bottom: 7px;
}

.twofactory-content{
    font-weight: 400;
    color: var(--gray-color-4);
    padding-bottom: 16px;
}

.twofactory-content-data{
    font-weight: 700;
    color: var(--primary-text-color);
}

.twofactory-factory-data{
    font-weight: 700;
    font-size: 30px;
    color: var(--primary-text-color);
    margin-bottom: 7px;
    margin-top: 12px;
}

.qr-codes-component{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.qr-code-icon {
    width: 100px;
    height: 100px;
}

.qr-code-content{
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-text-color);
}

.have-app-and-logged{
    margin: auto;
    padding-top: 18px;
}

.have-app-and-logged-button{
    background-color: var(--primary-color-4);
    border: solid 1px var(--primary-color-4);
    padding: 4px 16px;
    border-radius: 4px;
}

.have-app-and-logged-button-content{
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
}

.code-number {
    text-align: center;
}

.twofactory-factory-resent{
    margin-top: 24px
}

.twofactory-factory-resent-btn{
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid transparent;
    transition: 0.2s;
}

.btn-resent-content{
    color: var(--primary-color-4);
    font-size: 16px;
    font-weight: 600;
}

.refetch-icon{
    height: 16px;
    width: 16px;
}