.auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
}
.auth__form, .auth__image {
    background-color: #fff;
    height: 100%;
}
.auth__image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    background-position: 50%;
    background-size: auto;
    background-repeat: no-repeat;
}
.auth__logo.top-left {
    left: 30px;
    top: 30px;
}
.auth__logo {
    position: absolute;
    max-width: 99px;
}
.auth__form {
    width: 42%;
    padding: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .5);
    box-shadow: 0 0 8px rgba(0, 0, 0, .5);
}
.auth__form, .auth__image {
    background-color: #fff;
    height: 100%;
}
.auth__form form {
    width: 100%;
}
.auth__title {
    font-size: 2rem;
    color: #042a42;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 2rem;
}
.text-xs {
    font-size: 16px;
    font-size: 1rem;
}
.auth a, .auth h1, .auth h2, .auth h3, .auth h4, .auth h5, .auth h6, .auth label, .auth p, .auth span {
    color: #042a42;
    font-family: Roboto, sans-serif;
    font-weight: 400;
}
.auth p {
    font-size: 15px;
}
.auth .form-group {
    margin-bottom: 1rem;
    position: relative;
}
.auth .form-group label {
    font-size: 11px;
    background: #f6f6f6;
    display: block;
    position: relative;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    z-index: 1;
    border: 1px solid #ebebeb;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding-left: 12px;
}
.auth label {
    font-size: 13px;
    margin-bottom: .25rem;
}
.auth .form-group .form-control {
    border-radius: 8px;
    border-color: #ebebeb;
    background: #f6f6f6;
}
.form-control:not(.form-control-sm):not(.form-control-lg) {
    font-size: 13.6px;
    font-size: 0.85rem;
    line-height: 1.85;
    min-height: 38.4px;
    min-height: 2.4rem;
}
.btn-signin {
    background-color: #042a42;
    font-family: Roboto, sans-serif;
    color: #fff;
    padding: 1rem;
    margin-top: 25px;
    border-radius: 8px;
}
.btn-block {
    display: block;
    width: 100%;
}
.form-control:focus {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    border-color: #ccc;
}
.btn-signin:hover {
    opacity: .9;
    background-color: #042a42 !important;
    color: #fff !important;
}
.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.auth a {
    color: #042a42;
    font-size: 13px;
}
.auth .btn-eye {
    position: absolute;
    right: 0;
    top: 3px;
    background-color: transparent;
    border: none;
    color: rgba(0, 0, 0, .25);
}
.auth .btn-eye:focus, .auth .btn-eye:hover {
    background-color: transparent;
    color: rgba(0, 0, 0, .75);
}
.btn:focus, .btn.focus {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    border-color: #ccc;
}

@media (max-width: 1024px) {
    .auth__image {
        background-size: contain;
    }
    .auth__form {
        width: 45%;
    }
}
@media (max-width: 800px) {
    .auth__image {
        display: none;
    }
    .auth__form {
        padding-left: 2rem;
        padding-right: 2rem;
        min-height: 500px;
        overflow-y: auto;
        max-width: 100%;
        width: 100%;
    }
    .auth__logo-form {
        display: block;
    }
}