.auth-input-error{
	border: 1px solid #f00;
	outline: none;
}

.enter-form__submit{
    cursor: pointer;
}

.enter-form__submit:disabled{
    background-color: #555555;
    cursor: unset;
}

.enter-form__submit.is-loading{
    background: rgb(27, 91, 163);
    cursor: wait;
    pointer-events: none;
    gap: 8px;
}

.enter-form__submit.is-loading:disabled{
    background: rgb(27, 91, 163);
    cursor: wait;
}

.enter-form__submit.is-loading:after{
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #fff 0%, rgba(255,255,255,0.08) 80%, transparent 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
    animation: wait-spin 0.75s linear infinite;
}

.enter-form.auth-busy{
    pointer-events: none;
}

.enter-form.auth-busy .enter-form__input,
.enter-form.auth-busy .enter-form__pass-show{
    opacity: 0.55;
    cursor: wait;
}

.enter-form.auth-busy .enter-form__submit.is-loading{
    opacity: 1;
}

.eye-block{
    cursor: pointer;
    position: relative;
    right: 34px;
    top: 13px;
}

.enter-form__warning{
    color: red;
}

.enter-form__hint{
    color: rgb(66, 66, 66);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 4px;
}

.enter-form__hint ul{
    margin: 6px 0 0 18px;
    padding: 0;
}

.enter-form__hint a{
    color: rgb(27, 91, 163);
}

.enter-form__alt{
    display: block;
    margin-top: 14px;
    text-align: center;
    color: rgb(27, 91, 163);
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
}

.enter-form__alt:hover{
    text-decoration: underline;
}

.enter-form__status{
    min-height: 16px;
    color: rgb(27, 91, 163);
    font-size: 12px;
    line-height: 16px;
    margin: -2px 0 2px;
}

.enter-form__status:empty{
    display: none;
}

.main-body{
    background: none;
}