@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Poppins";
    font-weight: bold;
    src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
}

* {
    box-sizing: border-box;
}

html, body {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins';
    font-size: 16px;
    color: #696F79;
}

a {
    font-weight: bold;
    color: #4C70FF;
}

header {
    position: absolute;
    padding: 30px 80px;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    font-size: 1.71em;
    width: 50%;
}

.logo__text {
    color: #4C70FF;
    font-weight: bold;
}

.screen {
    height: 100vh;
}

.screen_auth {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.auth__content, .auth__form {
    width: 49.9%;
    padding: 150px 80px 100px 80px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    height: 100%;
}

.auth__form {
    padding-right: 190px;
}

.auth__content {
    background: #F9F9F9;
}

.auth__content__image {
    height: 440px;
    position: relative;
}

.auth__content__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.auth__content__header {
    font-size: 1.6em;
    font-weight: bold;
    margin: 20px 0 20px 0;
    text-align: center;
    color: #292731;
}

.auth__content__text {
    text-align: center;
    margin-bottom: 40px;
}

.auth__content__btns {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.btn {
    padding: 18px 28px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    text-decoration: none;
    font-size: 1.14em;
}

.btn__icon {
    font-size: 1.3em;
    margin-right: 10px;
    margin-bottom: 2px;
}

.btn_primary {
    color: #000;
    border: 1px solid #4C70FF;
    border-radius: 8px;
    box-shadow: 0px 4px 14px 1px rgba(0, 0, 0, 0.04);
    font-weight: bold;
}

.btn_secondary {
    color: #fff;
    background: #4C70FF;
    border-radius: 8px;
    border: 1px solid #4C70FF;
}

.auth__form__header {
    font-size: 2em;
    font-weight: bold;
    color: #292731;
}

.auth__form__text {
    margin: 12px 0;
}

.input {
    margin-bottom: 24px;
    position: relative;
    font-family: 'Poppins';
    font-size: 1.1em;
}

.input label {
    display: block;
    margin-bottom: 14px;
}

.input input {
    font-size: 0.9em;
    padding: 19px 19px 19px 60px;
    width: 100%;
    border: 1px solid #8692A6;
    border-radius: 8px;
    font-family: 'Poppins';
}

.input_noico input {
    padding: 19px;
}

.input input:focus {
    outline: none;
    box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, 0.11);
    border: 1px solid #4C70FF;
}

.input__icon {
    position: absolute;
    font-size: 1.6em;
    bottom: calc(50% - 1.2em);
    left: 19px;
}

input[type="checkbox"] {
    width: 0.9em;
    height: 0.9em;
}

input::placeholder {
    font-family: 'Poppins';
    color: #8692A6;
}

.input__icon-tel {
    font-size: 1em;
    bottom: 0;
    left: 0;
    height: calc(100% - 1.1em - 22px);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    border-right: 1px solid #B9B9C3;
    cursor: pointer;
    padding: 0 19px;
    width: 8em;
    justify-content: space-between;
}

.input__icon-tel img {
    height: 1.28em;
    width: auto;
    display: block; /*inline block would be fine too*/
    float: left;
}

.input__icon-tel__code {
    margin-left: 10px;
    margin-right: 2px;
}

.input__icon-tel__chevron {
    font-size: 0.7em;
}

.input__input-tel {
    padding-left: 10em !important;
}

.input-tel__list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    max-height: 200px;
    overflow-y: scroll;
    z-index: 100;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    border-radius: 0px 0px 8px 8px;
    display: none;
}

.input-tel__list_active {
    display: block;
}

.input-tel__list__item {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    padding: 24px 19px;
    width: 8em;
    justify-content: space-between;
}

.input-tel__list__item:hover {
    background: #4C70FF;
    color: #fff;
}

.auth__next {
    margin-top: 20px;
}

.auth__next .btn {
    width: 100%;
}

.auth__steps {
    margin-left: 80px;
    display: flex;
    flex-flow: row nowrap;
}


.steps__point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 56px;
    border: 1px solid rgba(105, 111, 121, 0.6);
    position: relative;
}

.steps__point_active {
    width: 12px;
    height: 12px;
    background: #4C70FF;
    border: none;
}

.steps__point::after {
    position: absolute;
    width: 40px;
    content: "";
    left: calc(100% + 8px);
    top: calc(50% - 1px);
    border: 1px solid rgba(105, 111, 121, 0.6);
}

.steps__point:last-child::after {
    display: none;
}

.auth__close {
    display: block;
    text-decoration: none !important;
    font-size: 2em;
    margin: 0 0 0 auto;
}

.auth__send-again {
    display: flex;
    flex-flow: row nowrap;
    color: #4C70FF;
    align-items: center;
    font-size: 1.15em;
    text-decoration: none;
    font-weight: normal;
}

.auth__send-again__icon {
    font-size: 1.2em;
    margin-right: 12px;
}
