html {
    overflow-x:hidden;
}

body {
    background-color: var(--login-background-color)!important;
    color: var(--login-text-color)!important;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.login-container {
    width: 450px;
    font-size: 1rem;
}

.block-login {
    border-radius: 20px;
    padding: 24px;
    background: #fff;
    color: #232529;
}

.header-login-form {
    margin-bottom: 25px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
}

.input-wrapper .form-control {
    text-align: left;
    border-radius: 20px;
}

.login-button {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    padding: 16px;
    box-shadow: none!important;
}

.login-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
    margin-left: 10px;
}

.form-title {
    font-weight: 600;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form label {
    color: #656772;
    font-size: 1rem;
}

.data-input {
    background-color: #F7F7F8!important;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    height: 48px;
    outline: 0;
    border: 2px solid transparent;
}

.data-input:focus {
    border: 2px solid var(--login-button-color)!important;
}

.data-input.error {
    border: 2px solid #D7424B!important;
}

.toggle-password svg path {
    fill: var(--login-button-color)!important;
}

.toggle-password {
    border-left: 1px solid #b0b0b0!important;
}

.error-message, .required {
    color: #D7424B!important;
}

.error-message {
    display: none;
}

.header {
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #23252;
    background: var(--login-header-color);
    padding: 8px;
}

.header .content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 69.5rem;
    min-width: 69.5rem;
}

.info-block img {
    width: 18px;
    height: 18px;
    position: absolute;
    margin: 3px;
    right: 8px;
    cursor: pointer;
}

.info-icon {
    padding: 0 10px;
    margin-top: -2px;
}

.right {
    width: 450px;
    display: flex;
    align-items: center;
}

.login-container button {
    color: var(--login-button-text-color)!important;
    background: var(--login-button-color)!important;
}

.login-container button:hover {
    color: var(--login-button-text-hover-color)!important;
    background: var(--login-button-hover-color)!important;
}

.captcha-question {
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem !important;
}

.footer {
    background: #EAEAEA;
}

@media (min-width: 990px) and (max-width: 1139.98px) {
    .header .content, .footer .content {
        min-width: auto;
        width: 100%;
        padding: 0 16px;
    }
}

@media (max-width: 988.98px) {
    .header .content, .footer .content {
        width: 100%;
        max-width: 33.75rem;
        min-width: auto;
    }

    .header .main {
        display: flex;
    }
}

@media(max-width:680px) {
    .login-container {
        margin: auto 0;
        width:100%;
        position:relative;
    }

    .footer {
        display: none;
    }
}
