/* ============================================
   SimpleVerify Marketing Page
   Stripe-inspired design system
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0a2540;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* --- Container --- */
.sv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.sv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sv-btn-primary {
    background: #635bff;
    color: #fff;
}

.sv-btn-primary:hover {
    background: #5851db;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.35);
}

.sv-btn-secondary {
    background: #f6f9fc;
    color: #0a2540;
    border: 1px solid #e3e8ee;
}

.sv-btn-secondary:hover {
    background: #edf1f7;
    border-color: #d3d9e3;
}

.sv-btn-ghost {
    background: transparent;
    color: #0a2540;
    border: 1px solid #c4cdd9;
}

.sv-btn-ghost:hover {
    background: rgba(10, 37, 64, 0.04);
    border-color: #0a2540;
}

.sv-btn-white {
    background: #fff;
    color: #635bff;
}

.sv-btn-white:hover {
    background: #f6f9fc;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.sv-btn-lg {
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 10px;
}

.sv-btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* --- Navigation --- */
.sv-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sv-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.sv-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: #0a2540;
}

.sv-nav-links {
    display: flex;
    gap: 32px;
}

.sv-nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #425466;
    transition: color 0.15s;
}

.sv-nav-links a:hover {
    color: #0a2540;
}

.sv-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-nav-link-auth {
    font-size: 15px;
    font-weight: 500;
    color: #425466;
    padding: 8px 4px;
    transition: color 0.15s;
}

.sv-nav-link-auth:hover {
    color: #0a2540;
}

.sv-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #0a2540;
    cursor: pointer;
    padding: 8px;
}

.sv-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid #e3e8ee;
}

.sv-mobile-menu a {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #425466;
}

.sv-mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid #e3e8ee;
}

/* --- Hero --- */
.sv-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #f6f9fc 0%, #fff 100%);
    overflow: hidden;
}

.sv-hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(99, 91, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sv-hero .sv-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sv-badge {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #635bff;
    background: rgba(99, 91, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.sv-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #0a2540;
    margin-bottom: 24px;
}

.sv-gradient-text {
    background: linear-gradient(135deg, #635bff 0%, #a259ff 50%, #f7b801 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sv-hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: #425466;
    max-width: 520px;
    margin-bottom: 32px;
}

.sv-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sv-hero-note {
    font-size: 13px;
    color: #8898aa;
    margin-top: 16px;
}

/* --- Code Window --- */
.sv-code-window {
    background: #0a2540;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.08),
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.sv-code-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-code-dots {
    display: flex;
    gap: 6px;
}

.sv-code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.sv-code-dots span:first-child { background: #ff5f57; }
.sv-code-dots span:nth-child(2) { background: #ffbd2e; }
.sv-code-dots span:nth-child(3) { background: #28c840; }

.sv-code-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.sv-code-body {
    padding: 20px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 13px;
    line-height: 1.7;
    color: #e3e8ee;
    overflow-x: auto;
    margin: 0;
}

.sv-code-comment { color: #6b7c93; }
.sv-code-keyword { color: #9c6ade; }
.sv-code-string { color: #3ecf8e; }
.sv-code-fn { color: #80b4fb; }
.sv-code-key { color: #e3e8ee; }
.sv-code-var { color: #80b4fb; }

/* --- Social Proof --- */
.sv-social-proof {
    padding: 60px 0;
    border-bottom: 1px solid #e3e8ee;
}

.sv-social-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8898aa;
    margin-bottom: 32px;
}

.sv-logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.sv-logo-placeholder {
    font-size: 15px;
    font-weight: 600;
    color: #c4cdd9;
    padding: 12px 24px;
    border: 2px dashed #e3e8ee;
    border-radius: 8px;
    white-space: nowrap;
}

.sv-stack-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #425466;
    padding: 10px 20px;
    border: 1px solid #e3e8ee;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.sv-stack-logo:hover {
    border-color: #635bff;
    color: #635bff;
    box-shadow: 0 2px 8px rgba(99, 91, 255, 0.1);
}

.sv-stack-logo i {
    font-size: 20px;
}

/* --- Features --- */
.sv-features {
    padding: 120px 0;
}

.sv-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.sv-section-header h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0a2540;
    margin-bottom: 16px;
    line-height: 1.15;
}

.sv-section-header p {
    font-size: 18px;
    color: #425466;
    line-height: 1.6;
}

.sv-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.sv-feature-card {
    padding: 36px 32px;
    border-radius: 12px;
    border: 1px solid #e3e8ee;
    background: #fff;
    transition: all 0.25s ease;
}

.sv-feature-card:hover {
    border-color: #d3d9e3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.sv-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.1) 0%, rgba(162, 89, 255, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #635bff;
    margin-bottom: 20px;
}

.sv-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 10px;
}

.sv-feature-card p {
    font-size: 15px;
    color: #425466;
    line-height: 1.65;
}

.sv-feature-countries {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e3e8ee;
    flex-wrap: wrap;
}

.sv-country-flag {
    font-size: 18px;
    line-height: 1;
}

.sv-country-label {
    font-size: 13px;
    font-weight: 600;
    color: #0a2540;
}

.sv-country-more {
    font-size: 12px;
    color: #8898aa;
    margin-left: auto;
}

/* --- How It Works --- */
.sv-how-it-works {
    padding: 120px 0;
    background: #f6f9fc;
}

.sv-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.sv-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.sv-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #635bff;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sv-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 10px;
}

.sv-step p {
    font-size: 15px;
    color: #425466;
    line-height: 1.65;
}

.sv-step-connector {
    width: 60px;
    height: 2px;
    background: #d3d9e3;
    margin-top: 26px;
    flex-shrink: 0;
}

/* --- Pricing --- */
.sv-pricing {
    padding: 120px 0;
}

.sv-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.sv-pricing-card {
    position: relative;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #e3e8ee;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.sv-pricing-featured {
    border: 2px solid #635bff;
    box-shadow: 0 8px 40px rgba(99, 91, 255, 0.12);
    transform: scale(1.03);
}

.sv-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #635bff;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.sv-pricing-tier {
    font-size: 16px;
    font-weight: 700;
    color: #425466;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sv-pricing-price {
    margin-bottom: 8px;
}

.sv-price-from {
    font-size: 16px;
    font-weight: 600;
    color: #8898aa;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sv-pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.sv-price {
    font-size: 48px;
    font-weight: 800;
    color: #0a2540;
    letter-spacing: -0.03em;
    line-height: 1;
}

.sv-price-period {
    font-size: 16px;
    color: #8898aa;
    font-weight: 500;
}

.sv-pricing-desc {
    font-size: 15px;
    color: #425466;
    line-height: 1.5;
    margin-bottom: 28px;
}

.sv-pricing-features {
    margin-bottom: 32px;
}

.sv-pricing-card .sv-btn-block {
    margin-top: auto;
}

.sv-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #425466;
    padding: 8px 0;
}

.sv-pricing-features li i {
    color: #635bff;
    font-size: 12px;
    flex-shrink: 0;
}

/* Pricing rate table (pay-as-you-go card) */
.sv-pricing-rates {
    width: 100%;
    margin-bottom: 24px;
    border-collapse: collapse;
}

.sv-pricing-rates td {
    padding: 10px 0;
    font-size: 14px;
    color: #425466;
    border-bottom: 1px solid #e3e8ee;
}

.sv-pricing-rates tr:last-child td {
    border-bottom: none;
}

.sv-pricing-rates td:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sv-pricing-rates td:first-child i {
    color: #635bff;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.sv-pricing-rates td:last-child {
    text-align: right;
    font-weight: 700;
    color: #0a2540;
    font-size: 15px;
}

.sv-pricing-card-note {
    text-align: center;
    font-size: 13px;
    color: #8898aa;
    margin-top: 12px;
}

.sv-pricing-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding: 24px 32px;
    background: #f6f9fc;
    border-radius: 12px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sv-pricing-cta-icon {
    font-size: 24px;
    color: #635bff;
    flex-shrink: 0;
}

.sv-pricing-cta-text {
    flex: 1;
    min-width: 0;
}

.sv-pricing-cta h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.sv-pricing-cta p {
    font-size: 14px;
    color: #425466;
    margin: 0;
}

.sv-pricing-cta-action {
    flex-shrink: 0;
    text-align: center;
}

.sv-pricing-cta-note {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #8898aa;
}

/* --- CTA --- */
.sv-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a1a5e 50%, #2d1b69 100%);
}

.sv-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.sv-cta h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    line-height: 1.15;
}

.sv-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    line-height: 1.6;
}

.sv-cta .sv-hero-actions {
    justify-content: center;
}

/* --- Waitlist Form --- */
.sv-waitlist-form {
    max-width: 560px;
    margin: 0 auto;
}

.sv-waitlist-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.sv-waitlist-input {
    flex: 1;
    min-width: 180px;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    color: #0a2540;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.sv-waitlist-input::placeholder {
    color: #8898aa;
}

.sv-waitlist-input:focus {
    border-color: #635bff;
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.25);
}

.sv-waitlist-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 14px;
}

@media (max-width: 600px) {
    .sv-waitlist-fields {
        flex-direction: column;
    }

    .sv-waitlist-input {
        min-width: 100%;
    }

    .sv-waitlist-fields .sv-btn {
        justify-content: center;
    }
}

/* --- Footer --- */
.sv-footer {
    padding: 80px 0 40px;
    background: #0a2540;
    color: #8898aa;
}

.sv-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.sv-footer-brand .sv-logo {
    color: #fff;
    margin-bottom: 16px;
}

.sv-footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
    color: #6b7c93;
}

.sv-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 20px;
}

.sv-footer-col li {
    margin-bottom: 10px;
}

.sv-footer-col a {
    font-size: 14px;
    color: #6b7c93;
    transition: color 0.15s;
}

.sv-footer-col a:hover {
    color: #fff;
}

.sv-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-footer-bottom p {
    font-size: 13px;
    color: #6b7c93;
}

.sv-footer-social {
    display: flex;
    gap: 20px;
}

.sv-footer-social a {
    font-size: 18px;
    color: #6b7c93;
    transition: color 0.15s;
}

.sv-footer-social a:hover {
    color: #fff;
}

/* Footer newsletter */
.sv-footer-newsletter-desc {
    font-size: 14px;
    color: #6b7c93;
    line-height: 1.6;
    margin-bottom: 14px;
}

.sv-footer-newsletter {
    display: flex;
    gap: 8px;
}

.sv-footer-newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
    font-family: inherit;
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.sv-footer-newsletter-input::placeholder {
    color: #6b7c93;
}

.sv-footer-newsletter-input:focus {
    border-color: #635bff;
    box-shadow: 0 0 0 2px rgba(99, 91, 255, 0.25);
}

.sv-btn-sm {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 6px;
}

.sv-footer-col a i {
    width: 16px;
    text-align: center;
    margin-right: 4px;
}

.sv-footer-trust {
    margin-bottom: 16px;
}

.sv-footer-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7c93;
    margin-bottom: 10px;
}

.sv-footer-trust li i {
    width: 16px;
    text-align: center;
    font-size: 14px;
    color: #8898aa;
}

.sv-footer-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7c93;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.15s;
}

.sv-footer-email:hover {
    color: #fff;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .sv-hero h1 {
        font-size: 44px;
    }

    .sv-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .sv-pricing-featured {
        transform: none;
    }

    .sv-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .sv-nav-links,
    .sv-nav-actions {
        display: none;
    }

    .sv-mobile-toggle {
        display: block;
    }

    .sv-mobile-menu.open {
        display: flex;
    }

    .sv-hero {
        padding: 120px 0 60px;
    }

    .sv-hero .sv-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sv-hero h1 {
        font-size: 36px;
    }

    .sv-hero-sub {
        font-size: 16px;
    }

    .sv-section-header h2 {
        font-size: 30px;
    }

    .sv-features-grid {
        grid-template-columns: 1fr;
    }

    .sv-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .sv-step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .sv-step {
        padding: 16px 0;
    }

    .sv-cta h2 {
        font-size: 30px;
    }

    .sv-hero-code {
        min-width: 0;
        overflow: hidden;
    }

    .sv-code-body {
        font-size: 11px;
        padding: 14px;
    }

    .sv-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sv-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sv-hero h1 {
        font-size: 28px;
    }

    .sv-hero-actions {
        flex-direction: column;
    }

    .sv-hero-actions .sv-btn {
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .sv-logo-grid {
        gap: 16px;
    }

    .sv-logo-placeholder {
        font-size: 13px;
        padding: 8px 16px;
    }

    .sv-price {
        font-size: 40px;
    }
}

/* ============================================
   Auth Pages
   ============================================ */

.sv-auth-body {
    background: #f6f9fc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sv-auth-body .sv-nav {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #e3e8ee;
}

.sv-auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.sv-auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e3e8ee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
    padding: 40px 36px;
}

.sv-auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.sv-auth-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #0a2540;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.sv-auth-header p {
    font-size: 15px;
    color: #425466;
}

/* Form elements */
.sv-form-group {
    margin-bottom: 20px;
}

.sv-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 6px;
}

.sv-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.sv-label-row .sv-label {
    margin-bottom: 0;
}

.sv-input {
    width: 100%;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 15px;
    color: #0a2540;
    background: #fff;
    border: 1px solid #d3d9e3;
    border-radius: 8px;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.sv-input::placeholder {
    color: #8898aa;
}

.sv-input:focus {
    border-color: #635bff;
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.12);
}

.sv-input-error {
    border-color: #e25950;
}

.sv-input-error:focus {
    border-color: #e25950;
    box-shadow: 0 0 0 3px rgba(226, 89, 80, 0.12);
}

.sv-error {
    font-size: 13px;
    color: #e25950;
    margin-top: 6px;
}

.sv-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #425466;
    cursor: pointer;
}

.sv-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #d3d9e3;
    accent-color: #635bff;
    cursor: pointer;
}

.sv-link-sm {
    font-size: 13px;
    font-weight: 500;
    color: #635bff;
    transition: color 0.15s;
}

.sv-link-sm:hover {
    color: #5851db;
}

.sv-link {
    font-weight: 600;
    color: #635bff;
    transition: color 0.15s;
}

.sv-link:hover {
    color: #5851db;
}

.sv-auth-alt {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e3e8ee;
}

.sv-auth-alt p {
    font-size: 14px;
    color: #425466;
}

/* Alert */
.sv-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 24px;
}

.sv-alert-success {
    background: rgba(61, 213, 152, 0.08);
    color: #1a8a5c;
    border: 1px solid rgba(61, 213, 152, 0.2);
}

.sv-alert-success i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Auth footer */
.sv-auth-footer {
    text-align: center;
    padding: 24px;
}

.sv-auth-footer p {
    font-size: 13px;
    color: #8898aa;
}

/* Auth responsive */
@media (max-width: 480px) {
    .sv-auth-card {
        padding: 32px 24px;
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }

    .sv-auth-main {
        padding: 32px 0;
        align-items: flex-start;
    }
}
