/*

    BEM: login

*/
.login__wrapper {
    padding: 26px 24px !important;
    font-family: 'Roboto', sans-serif;
}
.login__heading {
    color: #234864;
    margin-bottom: 15px;
    font-size: 27px;
    font-family: 'Rubik', sans-serif;
}
.login__input-block {
    margin-bottom: 16px;
}
.login__input[type],
select.login__input {
    font-size: 16px;
    line-height: 1.33;
    width: 100%;
    border-width: .0625rem;
    padding: 7.5px 10px;
    max-height: none;

    border-radius: 0;
}
.login__input[type]:focus,
select.login__input:active {
    border-color: #234864;
    box-shadow: 0 0 0 1px #234864;
    outline: 2px solid transparent;
}
.login__input--email[type] {
    margin-bottom: 16px;
}
.login__paragraph--large {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 15px;
}
.login__paragraph--remember-me {
    text-align: right;
    margin-top: 5px;
    margin-bottom: 30px;
}
.login__paragraph--back {
    margin-top: 40px;
    text-align: center;
}
.login__link {
    color: #fe8501;
    text-decoration: none;
}
.login__link:hover {
    text-decoration: underline;
    color: #fe8501;
}
.login__link--invisible {
    color: inherit;
}
.login__link--invisible:hover {
    color: inherit;
}
.login__submit-btn {
    margin-bottom: 20px;
}
.login__checkbox-block {
    margin-top: 8px;
    grid-column: 1 / -1;
    justify-self: center;
    display: flex;
    align-items: center;
}
.login__checkbox-label {
    margin-left: 4px;
    font-size: 14px;
}
.login__heading-txt {
    display: block;
    color: #234864;
    text-align: center;
    margin-bottom: 16px;
}
.login__heading-txt--register {
    margin-top: 32px;
    margin-bottom: 32px;

    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    /* or 31px */
    letter-spacing: -0.02em;
}
.login__subheading-txt {
    font-size: 22px;
    line-height: 140%;
    text-align: center;
    color: #234864;
    margin-bottom: 68px;
}
.login__after-txt {
    color: #234864;
    font-size: 18px;
    margin-top: 16px;
}
.login__register-text {
    margin-top: 20px;
}

/* Special */
@media screen and (min-width: 680px) {
    .login__input-block {
        margin-bottom: 0;
    }
    #login.register {
        width: 640px;
    }
    #login.register .login__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px 32px;
    }
    #login.register .login__heading {
        grid-column: 1 / -1;
    }
    #login.register .login__input-block[data-input-name="user_email"] {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    #login.register .login__wrapper>*:last-child,
    #login.register .login__wrapper > *:nth-last-child(2) {
        grid-column: 1 / -1;
        text-align: center;
    }
    #login.register .login__submit-btn {
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }
}


/*

    BEM: btn

*/
.btn {
    display: block;
    border: none;
    border-radius: 4px;
    background: #ff9800;
    color: #234864;
    border-radius: 100px;
    width: 100%;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
}
.btn:disabled {
    background: #fe840185;
    cursor: default;
}
.btn:active {
    transform: translateY(2px);
    border: none;
    outline: none;
}


/*

    Other

*/
.dashicons {
    color: #234864;
}
.login__skip-btn {
    text-decoration: none;
    margin-top: 0px;
}
.login__skip-btn:hover {
    color: #234864;
}
.login__skip-btn-wrapper {
    display: flex;
}

.login__help {
    margin-top: 10px;
}

.login__notice {
    font-size: 16px;
    margin-bottom: 10px;
}
