
/* SMS verification auth */
.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.auth-tab.is-active {
    color: #fff;
    border-color: rgba(166, 192, 254, 0.8);
    background: linear-gradient(120deg, rgba(166, 192, 254, 0.25) 0%, rgba(246, 128, 132, 0.2) 100%);
}

.auth-input-wrap--sms {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.auth-input-wrap--sms .auth-input {
    flex: 1;
    min-width: 0;
}

.auth-sms-btn {
    flex-shrink: 0;
    border: 0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    background: linear-gradient(120deg, #6ea8fe 0%, #f68084 100%);
}

.auth-sms-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.auth-sms-notice {
    width: 100%;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-sms-notice strong {
    color: #fff;
    font-weight: 600;
}

.auth-sms-sample {
    display: block;
    margin: 6px 0;
    color: rgba(166, 192, 254, 0.95);
    word-break: break-all;
}

.auth-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.auth-check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #6ea8fe;
    flex-shrink: 0;
}
