body {
    height: 100vh;
    background-color: #fff;
}
.section {
    position: relative;
    flex: 1 1 0px;
    height: 100%;
}
.banner.section {
    background-color: #007174;
    background-image: url('../img/login-background.webp');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 6px 4px #c7c7c7;
}
.banner.section img {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
form {
    position: relative;
}
form .form-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
}
form .form-wrap h1 {
    font-weight: 400;
    font-size: 1.4rem;
    text-align: center;
    position: relative;
    margin-bottom: 72px;
}
form .form-wrap h1::after {
    content: '';
    position: absolute;
    border-bottom: #007174 4px solid;
    border-radius: 50px;
    width: 38%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -36px;
}
form .form-wrap .button-wrap {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}
form .form-wrap .button-wrap .btn {
    flex: 1 1 0px;
    font-size: 16px;
}
form .register {
    color: #414141;
    text-align: center;
    margin-top: 86px;
    font-size: 18px;
}
.input-field {
    position: relative;
    width: 100%;
    flex-basis: var(--basis) !important;
    margin-bottom: 20px;
}
.input-field textarea,
.input-field > input {
    width: 100%;
    font-size: 1.08rem;
    padding-top: 22px;
    padding-right: 22px;
    padding-left: 72px;
    padding-bottom: 8px;
    height: 58px;
    border: none;
    outline: none;
    box-shadow: 0 0 2px 2px #ececec;
    border-radius: 50px;
}

.input-field.input-password input {
    padding-right: 72px;
}
.input-field i {
    position: absolute;
    font-size: 1.2rem;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    border-right: #000 1px solid;
    padding-right: 12px;
    height: 32px;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.input-field i.show-password {
    left: unset;
    right: 6px;
    border: none;
    pointer-events: all;
    cursor: pointer;
}
.input-field label {
    position: absolute;
    left: 68px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease;
    pointer-events: none;
}

.input-field input:not(:placeholder-shown) ~ label,
.input-field input:focus ~ label {
    top: 55%;
    left: 64px;
    transform: translateY(-120%) scale(.8);
}
@media(max-width: 768px) {
    form .form-wrap {
        width: 80%;
    }
    form .form-wrap .button-wrap {
        flex-direction: column;
    }
}
@media(max-width: 480px) {
    body {
        flex-direction: column-reverse;
        gap: 20px;
    }
    form .form-wrap {
        height: 100%;
    }
    form .form-wrap .button-wrap .btn {
        font-size: 13px;
    }
    form .register {
        margin-top: 10px;
    }
    form .register br {
        display: none;
    }
    .banner.section {
        flex: none;
        flex-basis: 38%;
        background-position: center;
    }
}
