.authTextButton {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 4px;
    border: 0;
    background: transparent;
    color: var(--red);
    font: inherit;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.authTextButton:hover {
    text-decoration: underline;
}

.authTextButton:disabled {
    cursor: wait;
    opacity: 0.65;
}

.setupCodeInput {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-align: center;
}

.setupSecondaryActions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.setupSecondaryActions .authTextButton {
    margin-top: 10px;
}

.loginMessage.success {
    border-color: #a9cbb2;
    background: #edf7ef;
    color: #225d31;
}

@media (max-width: 520px) {
    .setupSecondaryActions {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
