/**
 * Dealer registration — dealer_signup.php
 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --ds-primary: #ff6a00;
    --ds-dark: #0f172a;
    --ds-text: #334155;
    --ds-muted: #64748b;
    --ds-border: #e2e8f0;
    --ds-surface: #ffffff;
    --ds-radius: 20px;
    --ds-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.dealer-signup-page {
    margin: 0;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ds-text);
    background:
        radial-gradient(ellipse 80% 50% at 12% 10%, rgba(255, 106, 0, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse 55% 40% at 92% 88%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        linear-gradient(160deg, #0f172a 0%, #111827 45%, #0b1220 100%);
}

.ds-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem 2rem;
}

.ds-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto 1.25rem;
    flex-wrap: wrap;
}

.ds-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
}

.ds-brand img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 4px 6px;
}

.ds-topbar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.ds-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition: 0.2s ease;
}

.ds-nav-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 106, 0, 0.4);
    color: #fff;
}

.ds-nav-link--cta {
    background: linear-gradient(135deg, var(--ds-primary), #111);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.25);
}

.ds-layout {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.05fr);
    gap: 1.25rem;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    align-items: start;
}

.ds-hero {
    position: relative;
    border-radius: var(--ds-radius);
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    position: sticky;
    top: 1rem;
}

.ds-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.ds-hero-inner {
    position: relative;
    z-index: 1;
}

.ds-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.16);
    border: 1px solid rgba(255, 106, 0, 0.28);
    margin-bottom: 1rem;
}

.ds-hero h1 {
    color: #fff;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
    font-weight: 800;
}

.ds-hero-lead {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.92rem;
    margin: 0 0 1.35rem;
}

.ds-steps {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.35rem;
}

.ds-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ds-step-num {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ds-primary), #111);
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-step strong {
    display: block;
    color: #fff;
    font-size: 0.84rem;
    margin-bottom: 0.1rem;
}

.ds-step span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    line-height: 1.4;
}

.ds-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.ds-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    line-height: 1.45;
}

.ds-features li i {
    color: var(--ds-primary);
    margin-top: 0.12rem;
    width: 16px;
    text-align: center;
}

.ds-form-panel {
    width: 100%;
}

.ds-card {
    background: var(--ds-surface);
    border-radius: var(--ds-radius);
    box-shadow: var(--ds-shadow);
    border: 1px solid rgba(255, 255, 255, 0.55);
    padding: clamp(1.35rem, 3vw, 2rem);
    animation: dsCardIn 0.45s ease;
}

@keyframes dsCardIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ds-card-head {
    margin-bottom: 1rem;
}

.ds-card-head-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.ds-card-head h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ds-dark);
    letter-spacing: -0.02em;
    margin: 0;
}

.ds-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #fff5eb;
    border: 1px solid rgba(255, 106, 0, 0.2);
    color: var(--ds-primary);
    font-size: 0.72rem;
    font-weight: 800;
}

.ds-checklist {
    list-style: none;
    margin: 0;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #fff9f4 100%);
    border: 1px solid var(--ds-border);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.ds-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--ds-text);
    line-height: 1.45;
}

.ds-checklist li i {
    color: #16a34a;
    margin-top: 0.15rem;
    font-size: 0.7rem;
}

.ds-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid var(--ds-border);
}

.ds-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.ds-progress-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    background: #e2e8f0;
    color: var(--ds-muted);
    transition: 0.25s ease;
}

.ds-progress-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--ds-muted);
    text-align: center;
    transition: color 0.25s ease;
}

.ds-progress-step.is-active .ds-progress-dot,
.ds-progress-step.is-done .ds-progress-dot {
    background: linear-gradient(135deg, var(--ds-primary), #111);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.25);
}

.ds-progress-step.is-active .ds-progress-label,
.ds-progress-step.is-done .ds-progress-label {
    color: var(--ds-dark);
}

.ds-progress-line {
    flex: 0 0 24px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-bottom: 1.1rem;
}

.ds-progress-step.is-done + .ds-progress-line {
    background: linear-gradient(90deg, var(--ds-primary), #fdba74);
}

.ds-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.15rem;
    font-size: 0.88rem;
    line-height: 1.5;
}

.ds-alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.ds-alert i {
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.ds-form-section {
    margin-bottom: 1.35rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid var(--ds-border);
}

.ds-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0.75rem;
    padding-bottom: 0;
}

.ds-form-section-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--ds-dark);
    margin-bottom: 0.9rem;
    letter-spacing: -0.01em;
}

.ds-section-num {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ds-primary), #111);
    color: #fff;
    flex-shrink: 0;
}

.ds-field-hint {
    margin: 0.35rem 0 0;
    font-size: 0.74rem;
    color: var(--ds-muted);
    line-height: 1.4;
}

.ds-field-hint--error {
    color: #b91c1c;
    font-weight: 600;
}

.ds-field-hint--count {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.ds-verify-wrap {
    margin-top: 0.5rem;
}

.ds-field {
    margin-bottom: 0.85rem;
}

.ds-field label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--ds-dark);
    font-weight: 700;
    font-size: 0.8rem;
}

.ds-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.ds-input-wrap {
    position: relative;
    display: block;
}

.ds-input-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 1;
}

.ds-input-wrap input,
.ds-field select,
.ds-field textarea {
    width: 100%;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--ds-border);
    border-radius: 12px;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--ds-dark);
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.ds-input-wrap input {
    padding-left: 2.45rem;
}

.ds-input-wrap--password input {
    padding-right: 2.75rem;
}

.ds-input-wrap--plain input {
    padding-left: 0.85rem;
}

.ds-field textarea {
    min-height: 80px;
    resize: vertical;
    line-height: 1.5;
}

.ds-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2rem;
}

.ds-input-wrap input:focus,
.ds-field select:focus,
.ds-field textarea:focus {
    outline: none;
    border-color: var(--ds-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.ds-input-wrap input.ds-input--error,
.ds-field select.ds-input--error,
.ds-field textarea.ds-input--error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.ds-input-wrap .password-field-toggle {
    position: absolute;
    right: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--ds-muted);
    cursor: pointer;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    z-index: 2;
}

.ds-input-wrap .password-field-toggle:hover {
    color: var(--ds-primary);
    background: rgba(255, 106, 0, 0.08);
}

.ds-segment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.ds-segment-option {
    cursor: pointer;
    margin: 0;
}

.ds-segment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ds-segment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 0.65rem;
    border-radius: 12px;
    border: 2px solid var(--ds-border);
    background: #f8fafc;
    text-align: center;
    transition: 0.2s ease;
    min-height: 88px;
    justify-content: center;
}

.ds-segment-card i {
    font-size: 1.1rem;
    color: var(--ds-primary);
}

.ds-segment-card strong {
    display: block;
    font-size: 0.84rem;
    color: var(--ds-dark);
}

.ds-segment-card span {
    font-size: 0.72rem;
    color: var(--ds-muted);
    line-height: 1.35;
}

.ds-segment-option input:checked + .ds-segment-card {
    border-color: var(--ds-primary);
    background: #fff9f4;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.1);
}

.ds-submit-wrap {
    margin-top: 0.25rem;
}

.ds-submit {
    width: 100%;
    padding: 0.95rem 1rem;
    border: none;
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.96rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #ff7a1a 0%, var(--ds-primary) 40%, #111 100%);
    box-shadow: 0 10px 28px rgba(255, 106, 0, 0.3);
    transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    min-height: 52px;
}

.ds-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(255, 106, 0, 0.38);
}

.ds-submit:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
}

.ds-submit-note {
    margin: 0.75rem 0 0;
    font-size: 0.74rem;
    color: var(--ds-muted);
    line-height: 1.5;
    text-align: center;
}

.ds-submit-spinner {
    display: none;
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ds-spin 0.7s linear infinite;
}

.ds-submit.ds-submit--loading .ds-submit-text,
.ds-submit.ds-submit--loading > i {
    opacity: 0;
}

.ds-submit.ds-submit--loading .ds-submit-spinner {
    display: block;
}

.ds-submit.ds-submit--loading {
    pointer-events: none;
}

@keyframes ds-spin {
    to { transform: rotate(360deg); }
}

.ds-form-foot {
    text-align: center;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ds-border);
    font-size: 0.86rem;
    color: var(--ds-muted);
}

.ds-form-foot a {
    color: var(--ds-primary);
    font-weight: 700;
    text-decoration: none;
}

.ds-form-foot a:hover {
    text-decoration: underline;
}

.ds-customer-note {
    margin-top: 0.85rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--ds-border);
    font-size: 0.82rem;
    color: var(--ds-muted);
    line-height: 1.55;
    text-align: center;
}

.ds-customer-note a {
    color: var(--ds-primary);
    font-weight: 700;
    text-decoration: none;
}

.ds-footer {
    max-width: 1120px;
    width: 100%;
    margin: 1.25rem auto 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 960px) {
    .ds-layout {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .ds-hero {
        position: static;
        padding: 1.15rem 1.25rem;
    }

    .ds-hero h1 {
        font-size: 1.25rem;
    }

    .ds-hero-lead {
        font-size: 0.86rem;
        margin-bottom: 1rem;
    }

    .ds-steps {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .ds-step {
        flex: 1 1 calc(33% - 0.35rem);
        min-width: 0;
        padding: 0.55rem 0.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ds-step strong {
        font-size: 0.72rem;
    }

    .ds-step span {
        display: none;
    }

    .ds-features {
        display: none;
    }

    .ds-shell {
        padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
    }

    .ds-sticky-bar {
        display: block;
    }
}

@media (min-width: 961px) {
    .ds-sticky-bar {
        display: none !important;
    }
}

.ds-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--ds-border);
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.1);
}

.ds-sticky-bar[hidden] {
    display: none !important;
}

.ds-sticky-submit {
    width: 100%;
    min-height: 48px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--ds-primary), #111);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.28);
}

/* WhatsApp OTP verification (dealer signup) */
.phone-verify-block {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid #bbf7d0;
    background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%);
}

.phone-verify-head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.phone-verify-head > i {
    font-size: 1.5rem;
    color: #25d366;
    margin-top: 0.1rem;
}

.phone-verify-head strong {
    display: block;
    font-size: 0.88rem;
    color: var(--ds-dark);
    margin-bottom: 0.1rem;
}

.phone-verify-head span {
    font-size: 0.76rem;
    color: var(--ds-muted);
}

.phone-verify-block.is-verified {
    border-color: #86efac;
    background: #f0fdf4;
}

.phone-verify-block.is-code-expired {
    border-color: #fecaca;
    background: #fef2f2;
}

.phone-verify-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.phone-verify-send,
.phone-verify-confirm {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border-radius: 10px;
    border: none;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.phone-verify-send {
    background: #25d366;
    color: #fff;
}

.phone-verify-send:hover:not(:disabled) { filter: brightness(0.95); }

.phone-verify-send:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.phone-verify-confirm {
    background: var(--ds-dark);
    color: #fff;
}

.phone-verify-code-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.65rem;
}

.phone-verify-code-row input {
    flex: 1 1 140px;
    min-width: 120px;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--ds-border);
    border-radius: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    font-family: inherit;
}

.phone-verify-status {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ds-muted);
}

.phone-verify-status--success { color: #15803d; }
.phone-verify-status--error { color: #b91c1c; }
.phone-verify-status--pending { color: #b45309; }

.phone-verify-hint {
    margin: 0.55rem 0 0;
    font-size: 0.78rem;
    color: var(--ds-muted);
    line-height: 1.45;
}

.phone-verify-timers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-top: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    background: #fff;
    border: 1px dashed var(--ds-border);
}

.phone-verify-timer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.75rem;
    color: var(--ds-muted);
}

.phone-verify-timer__value {
    font-size: 1rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    color: var(--ds-dark);
}

.phone-verify-timer--expiry.is-ended .phone-verify-timer__value {
    color: #b91c1c;
}

.phone-verify-timer--resend.is-ready .phone-verify-timer__value {
    color: #15803d;
}

@media (max-width: 520px) {
    .ds-field-row,
    .ds-field-row--contact,
    .ds-segment-grid {
        grid-template-columns: 1fr;
    }

    .ds-step {
        flex: 1 1 calc(33% - 0.25rem);
        flex-direction: column;
        text-align: center;
    }

    .ds-topbar-nav {
        width: 100%;
    }

    .ds-nav-link {
        flex: 1 1 auto;
        justify-content: center;
        font-size: 0.76rem;
    }

    .ds-progress-label {
        font-size: 0.62rem;
    }

    .ds-card {
        padding: 1.15rem 1rem;
    }

    .phone-verify-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .phone-verify-code-row {
        flex-direction: column;
    }

    .phone-verify-code-row input {
        width: 100%;
    }
}
