.login__block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 383px;
    background: var(--vs_color_background_secondary);
    border-radius: 16px;
    padding: 24px;
}

.logo__block {
    position: relative;
    text-align: center;
}

.login__block .vs__button.return__login {
    position: absolute;
    width: fit-content;
    margin: 0;
    left: 0;
    top: 0;
    padding: 6px;
}

.login__block > h2 {
    text-align: center;
    margin: 16px 0 0 0;
}

.login__block > p {
    text-align: center;
    margin: 4px 0 0 0;
}

.login__block .vs__button {
    width: 100%;
    margin: 16px 0 0 0;
    justify-content: center;
}

.login__block .block__min_input {
    display: flex;
    margin-top: 16px;
}

.login__block .vs__input-text {
    height: auto;
    width: 100%;
}

.form-error {
    color: var(--vs_color_error);
    font-size: 0.9rem;
    margin-top: 4px;
    animation: .3s anim-lineUp ease-out;
    opacity: 1;
    animation-fill-mode: forwards;
    transform: translateY(0%);
    animation-delay: 3s;
}

@keyframes anim-lineUp {
    0% {
        opacity: 1;
    }
    100% {
        display: none;
        opacity: 0;
        transform: translateY(80%);
    }
}

#resendBtn.vs__button:disabled {
    background: none;
    color: var(--vs_color_text_secondary);
}

.cstm__confirm_code:disabled {
    color: var(--vs_color_text_heavy);
}

@media screen and (max-width: 550px) {

    .login__block {
        width: calc(100% - 40px);
    }

}