.auth_logo a {
    max-width: unset;
}

.auth_logo img {
    height: auto;
    width: 400px;
    max-width: unset;
}

.auth_page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 38px;
    padding-bottom: 38px;
}

.auth__form {
    background: #FFC880;
    box-shadow: 4px 4px 12px 2px #cb933bd9;
    border-radius: 32px;
    padding: 32px;
    width: 400px;
    position: relative;
    overflow: hidden;
}

.auth__form>.bl_load {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: #cb933b29;
    backdrop-filter: blur(2px);
    filter: blur(2px);
}

.auth_div {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
}

.main_title {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1em;
    text-align: center;
    margin-bottom: 8px;
}

.auth__subtitle {
    opacity: .5;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 14px;
    color: #A83908;
    margin-bottom: 8px;
    margin-top: 2px;
    text-align: center;
}

.auth_div input {
    width: 100%;
    height: 46px;
    border: 1px solid #A83908;
    border-radius: 24px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    color: #A83908;
    background: #fffaf3;
    padding: 0 12px;
    transition: all 100ms ease-in;
    text-align: center;
}

.auth__captcha img {
    border: 1px solid #A83908;
    border-radius: 24px;
    overflow: hidden;
}

.auth__captcha>div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

#cap_btn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    height: 46px;
    width: 46px;
    color: #A83908;
    background: #fffaf3;
    border: 1px solid #A83908;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 200ms ease-in;
}

#cap_btn:hover {
    border-color: #4D982C;
    background-color: #4D982C;
    color: #fffaf3;
}
.auth_buttons a,
.auth_buttons button {
    width: 100%;
    height: 46px;
    border-radius: 24px;
    border: 1px solid #4D982C;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1em;
    font-family: var(--second-family);
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease-in;
    color: #fffaf3;
}
.auth_buttons a i ,
.auth_buttons button i {
    font-size: 18px;
    margin-bottom: 3px;
}

.auth_buttons p {
    color: #A83908;
    width: 100%;
    text-align: center;
    margin: 16px 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    position: relative;
}

.auth_buttons p::after,
.auth_buttons p::before {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #a839082e;
    width: 42%;
    top: 6px;
}

.auth_buttons p::after {
    left: 58%;
}

.auth_buttons p::before {
    left: 0;
}

#log_btn {
    background: #4D982C;
}

#log_btn:hover {
    background: transparent;
    color: #4D982C;
}

#registerbtn {
    background: transparent;
    color: #4D982C;
}

#registerbtn:hover {
    background: #4D982C;
    color: #fffaf3;
}

.header_group,
.auth_buttons {
    position: relative;
}

.sv_token,
.auth_messg {
    position: absolute;
    height: 46px;
    z-index: 5;
    background: #FFC880;
    width: 100%;
    top: 46px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.auth_messg span {
    text-align: center;
    font-size: 16px;
    word-break: break-all;
    white-space: pre-wrap;
    font-weight: 800;
}

.auth_messg.error_tp {
    color: #E11508;
}

.auth_messg.success_tp {
    color: #4D982C;
}

.sv_token {
    top: auto;
    bottom: -8px;
    height: auto;
    font-size: 14px;
    font-weight: 500;
    width: 164px;
    left: calc(50% - 82px);
    color: #A83908;
    line-height: 1em;
    border: 1px solid #A83908;
    border-radius: 8px;
}

#footer_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

#footer_bg img {
    transform: rotate(180deg);
}

#auth_footer {
    position: relative;
    z-index: 999;
}

.footer_txt {
    font-size: 20px;
    color: #CB933B;
    text-align: center;
    font-weight: 900;
    margin-bottom: 28px;
    letter-spacing: 2px;
    margin-top: 59px;
}

@media screen and (max-width:420px) {
    .auth__form {
        width: 96%;
    }
    .auth__captcha img {
        width: calc(100% - 54px);
        height: 46px;
    }
    .auth_logo img {
        height: auto;
        width: 100%;
        max-width: unset;
        margin: auto;
        display: block;
    }
}