.auth_logo a {
    max-width: unset;
}

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

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

.auth__form {
    background: #415a79;
    box-shadow: 0 -3px 4px 0 rgba(0, 0, 0, .25);
    border-radius: 4px;
    padding: 24px;
    width: 372px;
    position: relative;
}

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

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

.main_title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1em;
}

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

.auth_div input {
    width: 100%;
    height: 46px;
    border: 1px solid #909090;
    border-radius: 2px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background: 0 0;
    padding: 0 12px;
    transition: all 100ms ease-in;
    color: #e7ff27;
}

.auth__captcha img {
    border: 1px solid #909090;
    border-radius: 2px;
    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: #e7ff27;
    background: transparent;
    border: 1px solid #909090;
    border-radius: 2px;
    font-size: 20px;
    cursor: pointer;
    transition: all 200ms ease-in;
}

#cap_btn:hover {
    border-color: #e7ff27;
    background-color: #e7ff27;
    color: #0f0f0f;
}

.auth_buttons button {
    width: 100%;
    height: 46px;
    border-radius: 2px;
    border: 1px solid #e7ff27;
    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: #0f0f0f;
}

.auth_buttons button i {
    font-size: 18px;
    margin-bottom: 3px;
}

.auth_buttons p {
    color: #909090;
    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: #909090;
    width: 42%;
    top: 6px;
}

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

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

#log_btn {
    background: #e7ff27;
}

#log_btn:hover {
    background: transparent;
    color: #e7ff27;
}

#registerbtn {
    background: transparent;
    color: #e7ff27;
}

#registerbtn:hover {
    background: #e7ff27;
    color: #0f0f0f;
}

.header_group,
.auth_buttons {
    position: relative;
}

.sv_token,
.auth_messg {
    position: absolute;
    height: 46px;
    z-index: 5;
    background: #415a79;
    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: #ff4f4f;
}

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

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

@media screen and (max-width:380px) {
    .auth__form {
        width: 96%;
    }
    .auth__captcha img {
        width: calc(100% - 54px);
        height: 46px;
    }
}