﻿html {
    width: 100%;
    height: 100%;
    background-color: #171717;
}
body {
    width: 100%;
    height: 100%;
    margin: unset;
}

a {
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.5s ease;
}
a:hover {
    opacity: 60%;
}

.u_btn {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s ease;
}
.u_btn:hover {
    opacity: 50%;
}

.error_input_message {
    color: #ff5050;
    margin-top: 5px;
}

main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    justify-content: space-around;
}
main .promo_section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 60%;
    height: 100%;
    background-position: center;
    background-size: 1150px;
    background-image: url("/images/auth_background.jpg");
}
main .promo_section .header_start {
    width: calc(100% - 80px);
    min-height: 30%;
    background: linear-gradient(178deg, #000000ad, transparent);
    padding: 40px;
}
main .promo_section .header_start .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
main .promo_section .header_start .logo img {
    margin-right: 15px;
    width: 30px;
}
main .promo_section .header_start .logo strong {
    font-size: 25px;
}
main .promo_section .text_end {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: calc(100% - 80px);
    min-height: 30%;
    background: linear-gradient(0deg, #000000ad, transparent);
    padding: 40px;
    padding-bottom: 50px;
    font-size: 22px;
    text-shadow: 1px 1px black;
}
main .form_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #060606;
    justify-content: flex-start;
    width: 40%;
    height: 100%;
}
main .form_section .auth_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
main .form_section .auth_header span {
    padding-right: 15px;
    margin-right: 10px;
    border-right: 1px solid dimgray;
}
.auth_view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 15px;
    width: calc(100% - 30px);
    flex-grow: 1;
}
.auth_view form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
    max-width: 450px;
}
.auth_view form h2 {
    font-size: 30px;
}
.auth_view form .form_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}
.auth_view form .form_item label {
    font-size: 14px;
    margin-bottom: 5px;
}
.auth_view .accept_form_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 15px;
    margin-bottom: 15px;
}
.auth_view .accept_form_item .a_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.auth_view .accept_form_item .a_item label {
    margin-left: 10px;
    font-size: 13px;
}
.auth_view .accept_form_item p {
    color: gray;
    font-size: 13px;
    margin: unset;
    margin-top: 10px;
}
.auth_view .remind_password_url {
    width: 100%;
    text-align: end;
    margin-bottom: 20px;
}
.modal_container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000000b8;
}


/* Максим Алексеев --- start --- */
.validation-form {
    width: 100%;
    max-width: 565px;
    height: 285px;
    padding: 24px;
    border: 1px solid #404040;
    border-radius: 8px;
    background-color: #171717;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.resert_validation-form {
    width: unset;
    height: unset;
    max-width: unset;
}
.resert_validation-form .content_es {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 20px;
}
.resert_validation-form mark {
    border-radius: 50%;
    padding: 1px 5px;
    max-width: 32px;
    max-height: 32px;
    font-size: 25px;
    margin-right: 15px;
    background-color: forestgreen;
}
.validation-form__title {
    font-size: 18px;
    font-weight: 600;
}
.validation-form__description {
    color: #636363;
    font-size: 14px;
    font-weight: 300;
}
.validation-form__char {
    color: #F5F5F5;
    text-align: center;
    background-color: #0A0A0A;
    border: 1px solid #404040;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    margin: 6px;
    font-size: 18px;
    padding: unset;
}
.validation-form__point {
    color: #404040;
}
.validation-form__submit {
    color: #F5F5F5;
    font-size: 16px;
    font-weight: 300;
    background-color: #A855F7;
    border: none;
    border-radius: 8px;
    width: 517px;
    height: 40px;
}
.validation-form__submit:hover {
    background-color: transparent;
    border: 1px solid #A855F7;
    color: #A855F7;
}
.validation-form__submit_disabled {
    background-color: #a955f73f;
    color: #F5F5F53f;
}
.validation-form__submit_disabled:hover {
    border: none;
    background-color: #A855F73f;
    color: #F5F5F53f;
}
.validation-form__resending {
    font-size: 16px;
    color: #F5F5F5;
    font-weight: 300;
    background-color: transparent;
    border: none;
}
.validation-form__resending:hover {
    color: #A855F7;
}
.validation-form__resending_disabled {
    color: #636363;
}
.validation-form__resending_disabled:hover {
    color: #636363;
}
/* Максим Алексеев --- end --- */