.auth-2fa {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.auth-button-2fa {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 10px 15px;
    background: #0077ff;
    border-radius: 8px;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
    cursor: pointer;
    transition: .15s color ease-in-out;
}

.auth-button-2fa:hover {
    background-color: #0066DA;
}

.auth-button-2fa:focus-visible {
    background-color: #0066DA;
    outline: 1px solid #FF3985;
}

.auth-button-2fa-cancel {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    padding: 10px 15px;
    background: #F1F3FC;
    border-radius: 8px;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #0077ff;
    cursor: pointer;
    transition: .15s color ease-in-out;
}

.auth-button-2fa-cancel:hover {
    background-color: #ebebeb;
}

.auth-button-2fa-cancel:focus-visible {
    background-color: #ebebeb;
}


.auth-button-2fa:disabled {
    cursor: not-allowed;
    background: rgba(0, 119, 255, 0.65);
}

div.popup-wrapper {
    width: 400px;
}

div.form-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

div.form-row + div.form-row {
    margin-top: 12px;
}

input.input-2fa {
    border: none;
    font-size: 16px;
    line-height: 18px;

    width: 100%;
    padding: 8px;
    border-bottom: 0.5px solid #999;
}

input.input-2fa:disabled {
    cursor: not-allowed;
}

span.form-error,
span.form-timer {
    margin-top: 4px;
    font-size: 14px;
    line-height: 14px;
}

span.form-error {
    color: #cc0000;
}

span.form-timer {
    color: #999;
}
