.login-form {
    width: 38%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-left: 30px;
}

.login__icon {
    position: absolute;
    left: -8px;
    top: -14px;
}

.login__content {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    background-image: url(../image/form_back@2x.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8px 12px;
    margin-left: -3px;
}

.login__content--logged {
    color: white;
    justify-content: flex-end;
    align-items: center;
}

.login__content--logged-name {
    margin-left: 10px;
}

.login__input {
    width: 32%;
    height: 25px;
    border: 1px solid #5b2e10;
    outline: none;
    background-color: #000002;
    color: #a35f32;
    padding: 5px;
    font-size: 12px;
    margin-right: 8px;
}

input::placeholder {
    color: #a35f32;
}

.login__input:focus {
    border: 1px solid #a35f32;
}

.g-btn {
    width: 80px;
    max-width: 32%;
    padding: 5px;
    font-size: 12px;
    line-height: 12px;
    color: #230a00;
    outline: none;
    border: none;
    border-radius: 4px;
    background-image: url(../image/btn_back@2x.png);
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.login-form--mobile-close {
    display: none;
}

@media (max-width: 1023px) {
    .login__content--logged {
        display: none;
    }
    .login-form {
        width: 100%;
        justify-content: flex-start;
        display: flex;
    }
    .login-form--mobile {
        transform: translateY(-100%);
        z-index: 11;
        height: 100vh;
        position: fixed;
        top: 0;
        padding: 15px;
        background-color: rgba(0, 0, 0, 0.68);
        transition: all .5s ease;
    }
    .login-form--mobile.active {
        transform: translateY(0%);
    }
    .login-form--mobile form {
        width: 80%;
        margin: auto;
        background-color: #ebdfc5;
        position: relative;
    }
    .login-form--mobile-close {
        display: block;
        position: absolute;
        width: 20px;
        height: 20px;
        background-image: url(../image/x.png);
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: right top;
        top: 10px;
        right: 10px;
    }
    .login__icon {
        display: none;
    }
    .login__content {
        background-image: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 40vh;
    }
    .login__content-header {
        margin-bottom: 30px;
    }
    .login__input {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
        height: 32px;
    }
    .login__content .g-btn {
        width: 50%;
        max-width: 80%;
        padding: 10px;
        font-size: 16px;
        margin-top: 30px;
    }
}

/*registration*/

.form__title {
    width: 100%;
    text-align: center;
    margin: 20px auto 12px;
}

.registration {
    width: 85%;
    max-width: 555px;
    margin: auto;
    padding: 12px 45px;
    border: 1px dashed #854e28;
    ;
}

.registration__block {
    width: 100%;
    max-width: 455px;
    margin: auto;
    margin-bottom: 8px;
}

.registration__label {
    display: block;
    height: 46px;
    max-width: 455px;
    padding: 10px;
    background-image: url(../image/registration_form.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.label__desc {
    margin-right: 10px;
    font-size: 14px;
    text-align: right;
}

.login__input--reg {
    max-width: 245px;
    width: 100%;
    color: #ffffff;
}

.label__remark {
    max-width: 260px;
    width: 100%;
    margin-left: auto;
    font-size: 12px;
    color: #a35f32;
}

.g-btn--reg {
    max-width: 130px;
    width: 80%;
    height: 36px;
    font-size: 18px;
    font-weight: bold;
}

/*пароль*/

.panel_lk_recall .form_extend.form-block-rcl {
    width: 100%;
    max-width: 455px;
}

.form_extend .form-block-rcl.default-field {
    height: 46px;
    max-width: 455px;
    padding: 10px;
    background-image: url(../image/registration_form.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin-bottom: 30px;
}

.form_extend .default-field input {
    max-width: 245px;
    width: 100%;
    height: 25px;
    border: 1px solid #5b2e10;
    outline: none;
    background-color: #000002;
    color: #ffffff;
    padding: 5px;
    font-size: 12px;
    margin-right: 8px;
    -webkit-box-shadow: none !important;
}

.form_extend .form-block-rcl.default-field .rcli {
    display: none;
}

.form_extend .default-field::after {
    position: absolute;
    margin-right: 10px;
    font-size: 14px;
    text-align: right;
    color: #ffef5a;
    font-weight: 600;
    right: 262px;
}

/* .form_extend .default-field:nth-child(1)::after {
    content: 'Password:';
}

.form_extend .default-field:nth-child(2)::after {
    content: 'Confirm your password:';
} */

.form_extend .default-field::before {
    position: absolute;
    max-width: 260px;
    width: 100%;
    margin-left: auto;
    font-size: 12px;
    color: #a35f32;
    bottom: -17px;
    right: 0;
}

/* .form_extend .default-field:nth-child(1)::before {
    content: '3-22 characters (letters and numbers):';
}

.form_extend .default-field:nth-child(2)::before {
    content: 'Password confirmation:';
} */

body .rcl-bttn.rcl-bttn__type-primary {
    width: 80%;
    height: 36px;
    font-size: 18px;
    font-weight: bold;
    padding: 5px;
    line-height: 12px;
    color: #230a00;
    outline: none;
    border: none;
    border-radius: 4px;
    background-image: url(../image/btn_back@2x.png);
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    max-width: 130px;
    margin: auto;
}

body .rcl-bttn.rcl-bttn__type-primary span {
    font-size: 0;
}

body .rcl-bttn.rcl-bttn__type-primary span::after {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #230a00;
    height: 18px;
    width: 100%;
    font-size: 18px;
    text-align: center;
}

.rcl-payment-form .rcl-form .submit-box {
    position: relative;
    padding-bottom: 40px;
}

.rcl-payment-form .rcl-form .submit-box::before {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    font-size: 18px;
    width: 100%;
    text-align: center;
}

body .rcl-bttn.rcl-bttn__type-primary .rcli {
    display: none;
}

body:not(.wp-admin) .rcl-bttn.rcl-bttn__type-primary {
    color: #230a00;
}

.panel_lk_recall .form_head {
    display: none;
}

.login-error {
    color: red;
    font-size: 22px !important;
}

.login-message {
    font-size: 22px !important;
    color: #ffef5a;
}

@media (max-width: 1023px) {
    .registration {
        width: 98%;
        padding: 12px 15px;
        background-color: #ebdfc5;
    }
    .registration__label, .form_extend .form-block-rcl.default-field {
        flex-direction: column;
        background-image: none;
        height: auto;
        padding: 10px 10px 0 10px;
    }
    .form_extend .form-block-rcl.default-field {
        margin-bottom: 33px;
        margin-top: 18px;
    }
    .form_extend .form-block-rcl.default-field:nth-child(2) {
        margin-bottom: 40px;
    }
    .panel_lk_recall .form-block-rcl {
        margin: 0;
    }
    .registration__label span {
        color: #000;
    }
    .login__input--reg, .form_extend .default-field input {
        margin-top: 10px;
        max-width: 98%;
    }
    .form_extend .default-field input {
        margin-bottom: 10px;
        margin-right: 0;
        height: 32px;
    }
    .label__remark {
        margin: 0 auto;
        text-align: center;
    }
    .form_extend .default-field::after {
        color: #000;
        top: -5px;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
    }
    .form_extend .default-field::before {
        text-align: center;
        left: 0;
        right: 0;
        margin: auto;
    }
    .form_extend .form-block-rcl .required {
        top: -5px;
    }
}

.panel_lk_recall {
    max-width: 100% !important;
}