.auth {
    width: var(--system-auth-form-width);
}
.auth__two-factor {
    width: var(--system-auth-form-two-factor-width);
}
.auth__two-factor .auto__form__fields {
    gap: .375rem;
}
.auto__form__fields,
.auth__form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.auto__form__fields {
    --bulma-field-block-spacing: 0;
    gap: 1.25rem;
    align-self: stretch;
}
.auto__form__fields .field {
    width: 100%;
}
.auth__form {
    gap: .75rem;
}
.auth__logo {
    margin-bottom: var(--system-block-gap);
}
.auth__logo img {
    /*height: var(--system-auth-form-logo-height);*/
}
.auth__form__info {
    margin-bottom: .5rem;
    text-align: center;
}
.auto__form__fields .block__error {
    margin-bottom: 0 !important;
    align-self: stretch;
}
.auth__form__header {
    font-weight: var(--system-font-weight-semibold);
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -2%;
    text-align: center;
}
.auth__form .field.otp .control {
    display: inline-flex;
    gap: .5rem;
}
.auth__form .field.otp .input {
    --bulma-input-placeholder-color: var(--system-color-gray-300);
    height: 4rem;
    width: 4rem;
    aspect-ratio: 1;
    font-size: 3rem;
}
.auth__form .field.otp .error {
    font-weight: var(--system-font-weight-semibold);
    margin-bottom: 2rem;
}
.auth__form .field.otp.error .input  {
    border-width: 2px;
    border-color: var(--system-color-danger);
    color: var(--system-color-danger);
}
.auth__form .field.otp .input:focus-visible {
    outline: none;
}
.auth__form .field.otp .control[tabindex]:focus-visible {
    outline-offset: var(--system-controls-focus-offset);
    outline:  var(--system-controls-focus-width) var(--bulma-focus-style) var(--system-color-primary);
    border-radius: var(--system-border-radius);
}
