body {
    margin: 0;
    font-family: Inter;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--bg-content-color);
}

.login {
    display: flex;
    flex-direction: column;
    gap: 69px;
    transform: translateY(120px);
}

.login__app-links {
    max-width: 434px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13.55px;
}

.login__app-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.login__app-link .login__app-qr {
    border: 1px solid #fff;
    height: 100px;
    width: 100px;
}

.login__app-link-img {
    width: 100%;
    height: 66px;
}

.login-form {
    background-color: var(--bg-menu-color);
    border-radius: 24px;
    box-shadow: 0px 0px 10px 0px #5D759326;
    width: 434px;
    height: 457px;
    padding: 40px;
}

.login-form__inner {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.btn-login {
    height: 56px;
    width: 100%;

    font-size: 16px;
    line-height: 24px;
}

.login__inputs {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.login__input_block {
    position: relative;
}

.login__input {
    width: 100%;
    height: 56px;
    background-color: unset;
    border: 1px solid var(--border-primary) !important;

    padding: 24px 16px 8px 16px;
    border-radius: 11px;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-primary);
    outline: none;
}

.login__input_label {
    position: absolute;
    top: 8px;
    left: 16px;
    color: var(--text-disable);
    font-size: 12px;
    line-height: 16px;
}

.login__logo-wrapper {
    margin-bottom: 47.5px;
    display: flex;
    justify-content: center;
    height: 102px;
}

.login__logo-wrapper img {
    height: 100%;
}

.login__input--error {
    border: 1px solid var(--error) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 0;
    -webkit-text-fill-color: var(--menu-color);
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(0,174,255,0.04) 50%,rgba(255,255,255,0) 51%,rgba(0,174,255,0.03) 100%);
}

.login__logo {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    color: var(--menu-color);
    line-height: 101.523%;
    letter-spacing: 0.4px;
    max-width: 147px;
}

.login__logo_selection {
    color: var(--btn-primary);
}

.login__icon {
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 24px;
    height: 24px;
    filter: contrast(0.01) brightness(1.4);
}

.lock {
    display: none;
}

.error-text {
    font-size: 12px;
    margin-top: 4px;
    height: 18.5px;
    color: var(--error);
}

@media (max-height: 1040px) {
    .login {
        transform: none;
    }
}

@media (max-height: 780px) {
    .login {
        padding: 40px 0;
        min-height: 796px;
    }
    .container {
        overflow-y: scroll;
        align-items: normal;
    }
}
