.auth__field .text-block {
    font-size: 8px;
    margin-top: 5px;
}

/* Спиннер на кнопке при отправке формы */
.btn.loadings {
    pointer-events: none;
    color: transparent !important;
    position: relative;
}
.btn.loadings::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}