@import url('../index.css');

/*-------------------------------------------------------LOGIN PAGE----------------------------------------------------------*/
/*---------------LEFT COLUMN-------------*/
.login-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100% !important;
}

.login__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 549px;
    margin: 0 auto;
}

@media(max-width: 767.9px) {
    .login-page {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }   

    .login__container {
        max-width: 649px;
    }
}

.login__left-col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 100%;
    background-image: url('../images/login.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
}

.left-col__header {
    min-height: 82px;
    padding: 20px;
}

.left-col__header-box {
    padding-top: 38px;
}

.let-col__main {
    padding: 20px;
}

.left-content {
    height: calc(100vh - 140px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.left-content__heading {
    margin-bottom: 24px;
    line-height: 1.3;
    color: rgb(232, 230, 227);
    font-size: 44px;
}

@media(max-width: 767.9px) {
    .left-content {
        height: 100%;
    }

    .left-content__heading {
        margin-top: 60px;
        margin-bottom: 8px;
        font-size: 36.5px;
    }
}

.left-content__text {
    margin-bottom: 48px;
    line-height: 1.6;
    color: rgb(232, 230, 227);
    font-size: 18px;
}

/*-----------END OF LEFT COLUMN----------*/


/*--------------RIGHT COLUMN-------------*/

.login__right-col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 100vh;
    background-color: #f1f5f6;
}

.right-col__content {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
}

@media(max-width: 767.9px) {
    .login__right-col {
        -webkit-box-flex: 2;
            -ms-flex: 2;
                flex: 2;
    }
    
    .right-col__content {
        height: 100%;
        margin: 20px 0;
    }
}

.right-col__heading {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 400;
    color: #1e1d1c;
}

.form__container {
    max-width: 480px;
    margin: 0 auto;
}

.form__phone, .form__email, .form__password, .form__repeat-password {
    margin-bottom: 16px;
}

.phone__label, .email__label, .password__label, .repeat-password__label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #4C4D4D;
}

.form__input {
    width: 100%;
    height: 52px;
    padding: 13px 6px 13px 26px;
    font-weight: 600;
    font-size: 16px;
    outline: none;
    -webkit-box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
            box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    border-color: #dae1e3;
    border-radius: 5px;
    opacity: 0.4;
}

.form__input:focus {
    -webkit-box-shadow: 0 0 5px rgba(30, 139, 254, 0.5);
    box-shadow: 0 0 5px rgb(30 139 254 / 50%);
    border-color: #057bf8;
    color: #495057;
    font-weight: 400;
    outline: 0;
    opacity: 1;
}

/* Class for phone input is generated with ajax, so changes for input must be provided here! */
.iti {
    width: 100%;
}

.iti__selected-flag {
    padding: 0px 6px 0px 8px;
}

@media(max-width: 474.98px) {
    .iti--container {
        left: 0px !important;
    }
}

.form__handlers-container {
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    color: #4c4d4d;
    font-size: 14px;
    line-height: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*----------CUSTOM CHECKBOX--------------*/

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    border: 0.5px solid rgb(186, 186, 186);
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
}

/* On mouse-over, add a grey background color */
.container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked~.checkmark {
    background-color: #000000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*------END OFCUSTOM CHECKBOX------------*/

.form__link {
    color: #000000 !important;
    font-weight: 400;
    text-decoration: none;
}

.form__link:hover {
    color: #3a3a3a !important;
    text-decoration: underline;
}

.form__button {
    width: 100%;
    padding: 13px 32px;
    margin: 26px 1px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    border-radius: 5px;
    text-shadow: none;
    background-color: #000000;
    border-color: #000000;
    -webkit-box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
            box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    cursor: pointer;
}

.form__button:hover {
    background-color: #3a3a3a;
    border-color: #3a3a3a;
}

.right-col__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 30px;
    font-size: 16px;
    font-weight: 400;
    color: #8e9a9d !important;
}

.footer__link-container {
    padding-left: 6px;
}

.footer__link {
    color: #000000;
}

.footer__link:hover {
    color: #3a3a3a !important;
    text-decoration: underline;
}

/*-----------END OF RIGHT COLUMN---------*/
/*-------------------END OF LOGIN PAGE-------------------------------------*/

/*-------------------PHONE FORGOT PAGE-------------------------------------*/

.next-button{
    margin-top: 10px;
}

@media(max-width: 767.9px) {
    .right-col__next {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
    }

    .right-col__next-content {
        height: 50vh;
        margin: auto 0;
    }

    .next-button{
        margin-top: 0px;
    }
}

/*-------------------END OF PHONE FORGOT PAGE-------------------------------------*/