html,
body {
    height: 100%;
}

body {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: #fff;
}

/** {*/
/*    border: 1px solid red;*/
/*}*/

.login-wr,
.signup-wr {
    padding-top: 106px;
    max-width: 1570px;
    width: 100%;
    height: 100%;
    /*overflow: hidden;*/
}
.secondary-block::after{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    content: '';
    width: 50vw;
    height: 100%;
}
.signup-wr .secondary-block::after {
    background-color: #eef7fb;
}
.login-wr .secondary-block::after {
    background-color: #0fa2fc;
}
.steps {
    display: flex;
    position: relative;
    max-width: 66%;
    width: 100%;
    margin: 0 auto;
}
.dashed {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background-image: linear-gradient(90deg, transparent, transparent 40%, rgb(255, 255, 255) 40%, rgb(255, 255, 255) 100%), linear-gradient(90deg, rgb(110, 118, 119), rgb(110, 118, 119));
    background-size: 10px;
    z-index: -1;
}
.dot-wr {
    position: relative;
    flex: 1;
}
.dot-wr.start::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: calc(75% - 12px);
    height: 2px;
    background-color: #008600;
}
.dot-start {
    border-radius: 50%;
    border: 2px solid #008600;
    width: 12px;
    aspect-ratio: 1;
    background-color: #fff;
}
.dot-wr.middle {
    justify-content: center;
}
.dot-wr.finish {
    justify-content: end;
}
.dot-middle {
    border-radius: 50%;
    border: 2px solid #6e7677;
    width: 12px;
    aspect-ratio: 1;
    background-color: #fff;
}
.dot-finish {
    border-radius: 50%;
    border: 2px solid #6e7677;
    width: 12px;
    aspect-ratio: 1;
    background-color: #fff;
}
.signup-form .title{
    display: inline-block;
    font-size: 32px;
    font-weight: bold;
    padding-top: 48px;
}
.signup-form .field-login-email,
.signup-form .field-login-recaptcha,
.signup-form .field-login-remember,
.signup-form .field-login-password,

.signup-form .field-register-email,
.signup-form .field-register-recaptcha,
.signup-form .btn,
.signup-form .field-register-password {
    margin-top: 32px;
}
.signup-form .field-login-remember .form-check {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.signup-form .field-login-remember .form-check .form-check-input {
    position: static;
    margin-top: 0;
}
.signup-form .btn {
    background-color: #008600;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
}
.signup-form p.instead a {
    display: inline-block;
    color: #008600;
    margin: 16px auto 0;
    text-align: center;
}
.signup-form p.instead.reset a {
    color: #000;
}
.signup-form p.terms {
    font-size: 14px;
}
.signup-form p.terms a {
    color: #000;
    text-decoration: underline;
}
.signup-form,
.info {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}
.info .title {
    font-size: 24px;
    font-weight: 600;
}
.options {
    padding-left: 0;
}
.option {
    margin-top: 32px;
}
.option .img {
    flex-basis: 20%;
    display: flex;
    align-items: center;
}
.option .img img{
    border-radius: 4px;
    width: 100%;
}
.option .content {
    padding-left: 36px;
    flex-basis: 80%;
}
.option .content span{
    font-size: 24px;
    font-weight: 700;
}
.option .content p{
    margin-top: 16px;
}
/*OLD*/
.form-signin,
.form-signup {
    width: 100%;
    max-width: 480px;
    padding: 15px;
    margin: 0 auto;
    border-radius: 12px;
}

.form-signin .checkbox,
.form-signup .checkbox {
    font-weight: 400;
}

.form-signin .form-control,
.form-signup .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}

.form-signin .form-control:focus,
.form-signup .form-control:focus {
    z-index: 2;
}

.navbar-dark .navbar-nav .nav-link {
    color:#fff;
}

.login-img {
    width: 100%;
    max-width: 500px;
}
.login-img-title {
    font-size: 32px;
    font-weight: 700;
}
.login-img-subtitle {

}

@media screen and (max-width: 767.98px) {
    .secondary-block::after{
        width: 100vw;
    }
    .instead.reset {
        font-size: 14px;
    }
}
@media screen and (max-width: 1199.98px) {
    .signup-form .title{
        padding-top: 8px;
    }
    .info {
        padding: 15px;
    }
}
