/* TOPUP ONLINE — Platform marketing */

:root {
    --plt-bg: #06080f;
    --plt-bg-elevated: #0d111c;
    --plt-surface: #ffffff;
    --plt-muted: #64748b;
    --plt-border: rgba(255, 255, 255, 0.08);
    --plt-accent: #22d3ee;
    --plt-accent-2: #818cf8;
    --plt-warm: #fbbf24;
    --plt-gradient: linear-gradient(135deg, #22d3ee 0%, #818cf8 50%, #c084fc 100%);
    --plt-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --plt-radius: 1.25rem;
}

body.platform-site {
    font-family: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
    color: #0f172a;
    background: #f8fafc;
    overflow-x: hidden;
}

/* ── Navbar ── */
.platform-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 0.85rem 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.platform-nav.scrolled,
.platform-nav.menu-open {
    background: rgba(6, 8, 15, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--plt-border);
}

.platform-nav.scrolled {
    padding: 0.6rem 0;
}

.platform-nav .container {
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .platform-nav > .container {
        flex-wrap: nowrap;
        align-items: center;
    }

    .platform-nav .navbar-collapse {
        display: flex !important;
        flex-grow: 1;
        align-items: center;
        gap: 1.5rem;
    }

    .platform-nav .plt-nav-center {
        flex: 1;
        justify-content: center;
    }

    .platform-nav .plt-nav-auth {
        flex-direction: row;
        flex-shrink: 0;
        align-items: center;
        gap: 0.75rem;
        margin-left: 0;
    }

    .platform-nav .plt-nav-auth .nav-item {
        display: flex;
        align-items: center;
    }

    .platform-nav .plt-nav-auth .nav-link {
        padding: 0.5rem 0.75rem !important;
        white-space: nowrap;
    }

    .platform-nav .plt-nav-auth .btn-plt-primary {
        padding: 0.5rem 1.15rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
}

.platform-nav-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.35rem 0.55rem;
}

.platform-nav-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.35);
}

@media (max-width: 991.98px) {
    .platform-nav {
        background: rgba(6, 8, 15, 0.92);
    }

    .platform-nav .platform-nav-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        width: 100%;
        margin-top: 0.75rem;
        padding: 1rem 0 0.5rem;
        border-top: 1px solid var(--plt-border);
    }

    .platform-nav .navbar-nav {
        width: 100%;
    }

    .platform-nav .nav-link {
        color: #fff !important;
        padding: 0.7rem 0 !important;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .platform-nav .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .platform-nav .navbar-nav.align-items-lg-center,
    .platform-nav .plt-nav-auth {
        padding-top: 0.75rem;
        margin-top: 0.25rem;
        border-top: 1px solid var(--plt-border);
        gap: 0.75rem;
    }

    .platform-nav .plt-nav-auth .nav-item {
        width: 100%;
    }

    .platform-nav .plt-nav-auth .nav-link {
        padding: 0.7rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .platform-nav .btn-plt-primary {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 0.25rem;
    }

    .platform-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: var(--plt-bg-elevated);
        border: 1px solid var(--plt-border);
        margin-top: 0.5rem;
    }

    .platform-nav .dropdown-item {
        color: rgba(255, 255, 255, 0.85);
    }

    .platform-nav .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }
}

.platform-nav .navbar-brand {
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: #fff !important;
}

.platform-nav .brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--plt-gradient);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.plt-brand-logo {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.plt-brand-logo-sm {
    height: 28px;
    max-width: 100px;
}

.platform-nav .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.platform-nav .nav-link:hover {
    color: #fff !important;
}

.btn-plt-primary {
    background: var(--plt-gradient);
    border: none;
    color: #06080f;
    font-weight: 600;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-plt-primary:hover {
    color: #06080f;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 211, 238, 0.35);
}

.btn-plt-ghost {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.2s, border-color 0.2s;
}

.btn-plt-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-plt-outline-dark {
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    font-weight: 600;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    background: #fff;
}

.btn-plt-outline-dark:hover {
    border-color: #818cf8;
    color: #4f46e5;
    background: #fff;
}

/* ── Hero ── */
.plt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
    background: var(--plt-bg);
    overflow: hidden;
}

.plt-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.plt-hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.plt-hero-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.plt-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 100%);
}

.plt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--plt-border);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.plt-hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 12px #34d399;
    animation: plt-pulse 2s infinite;
}

@keyframes plt-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.plt-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.plt-gradient-text {
    background: var(--plt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plt-hero-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin-bottom: 2rem;
}

.plt-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--plt-border);
}

.plt-hero-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.plt-hero-stats .stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Browser mockup */
.plt-mockup {
    position: relative;
    border-radius: var(--plt-radius);
    background: var(--plt-bg-elevated);
    border: 1px solid var(--plt-border);
    box-shadow: var(--plt-shadow);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.plt-mockup:hover {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.plt-mockup-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid var(--plt-border);
}

.plt-mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.plt-mockup-bar span:nth-child(1) { background: #f87171; }
.plt-mockup-bar span:nth-child(2) { background: #fbbf24; }
.plt-mockup-bar span:nth-child(3) { background: #34d399; }

.plt-mockup-url {
    flex: 1;
    margin-left: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: ui-monospace, monospace;
}

.plt-mockup-body {
    padding: 1.25rem;
}

.plt-mockup-preview {
    border-radius: 10px;
    background: linear-gradient(180deg, #131a2e 0%, #0d111c 100%);
    padding: 1rem;
    min-height: 280px;
}

.plt-mockup-nav-fake {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.plt-mockup-nav-fake span {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.plt-mockup-nav-fake span:nth-child(1) { width: 60px; background: var(--plt-gradient); opacity: 0.8; }
.plt-mockup-nav-fake span:nth-child(2) { width: 40px; }
.plt-mockup-nav-fake span:nth-child(3) { width: 40px; }

.plt-mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.plt-mockup-card {
    aspect-ratio: 1;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--plt-border);
    display: flex;
    align-items: flex-end;
    padding: 0.5rem;
}

.plt-mockup-card i {
    font-size: 1.25rem;
    color: var(--plt-accent);
    opacity: 0.7;
}

.plt-float-badge {
    position: absolute;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f172a;
    animation: plt-float 4s ease-in-out infinite;
}

.plt-float-badge.top-right {
    top: 10%;
    right: -10%;
}

.plt-float-badge.bottom-left {
    bottom: 15%;
    left: -8%;
    animation-delay: -2s;
}

@keyframes plt-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ── Sections ── */
.plt-section {
    padding: 5.5rem 0;
}

.plt-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6366f1;
    margin-bottom: 0.75rem;
}

.plt-section-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.plt-section-desc {
    color: var(--plt-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* Steps */
.plt-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

@media (max-width: 991px) {
    .plt-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .plt-steps { grid-template-columns: 1fr; }
}

.plt-step {
    position: relative;
    padding: 1.75rem;
    border-radius: var(--plt-radius);
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.plt-step:hover {
    border-color: #c7d2fe;
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.08);
}

.plt-step-num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #4f46e5;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.plt-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plt-step p {
    font-size: 0.875rem;
    color: var(--plt-muted);
    margin: 0;
}

/* Feature cards */
.plt-bento-item {
    padding: 1.75rem;
    border-radius: var(--plt-radius);
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

.plt-bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.plt-bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.plt-bento-icon.cyan { background: #ecfeff; color: #0891b2; }
.plt-bento-icon.indigo { background: #eef2ff; color: #4f46e5; }
.plt-bento-icon.amber { background: #fffbeb; color: #d97706; }
.plt-bento-icon.emerald { background: #ecfdf5; color: #059669; }
.plt-bento-icon.rose { background: #fff1f2; color: #e11d48; }

.plt-bento-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plt-bento-item p {
    font-size: 0.9rem;
    color: var(--plt-muted);
    margin: 0;
    line-height: 1.6;
}

.plt-bento-highlight {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border: none;
    color: #fff;
}

.plt-bento-highlight p { color: rgba(255, 255, 255, 0.65); }
.plt-bento-highlight .plt-bento-icon { background: rgba(255, 255, 255, 0.1); color: var(--plt-accent); }

/* Pricing */
.plt-pricing-bg {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
}

.plt-plan {
    height: 100%;
    border-radius: var(--plt-radius);
    background: #fff;
    border: 1.5px solid #e2e8f0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
}

.plt-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.plt-plan.featured {
    border-color: #818cf8;
    box-shadow: 0 24px 60px rgba(99, 102, 241, 0.15);
}

.plt-plan.featured::before {
    content: 'Paling Populer';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--plt-gradient);
    color: #06080f;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

.plt-plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plt-muted);
    margin-bottom: 0.5rem;
}

.plt-plan-price {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.plt-plan-price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--plt-muted);
}

.plt-plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.plt-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #334155;
    margin-bottom: 0.65rem;
}

.plt-plan-features li i {
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

/* FAQ */
.plt-faq .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #fff;
}

.plt-faq .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.15rem 1.25rem;
    box-shadow: none !important;
    background: #fff;
}

.plt-faq .accordion-button:not(.collapsed) {
    color: #4f46e5;
    background: #fafafa;
}

.plt-faq .accordion-body {
    color: var(--plt-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 1.25rem 1.15rem;
}

/* CTA */
.plt-cta {
    background: var(--plt-bg);
    border-radius: 2rem;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.plt-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(34, 211, 238, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(129, 140, 248, 0.15), transparent 50%);
}

.plt-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    position: relative;
}

.plt-cta p {
    color: rgba(255, 255, 255, 0.55);
    position: relative;
}

/* Footer */
.plt-footer {
    background: var(--plt-bg);
    color: rgba(255, 255, 255, 0.5);
    padding: 3.5rem 0 2rem;
    border-top: 1px solid var(--plt-border);
}

.plt-footer-brand {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.plt-footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

/* Inner pages (paket, terms) */
.plt-page-hero {
    background: var(--plt-bg);
    padding: 7rem 0 3rem;
    color: #fff;
    text-align: center;
}

.plt-page-hero h1 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

.plt-page-hero p {
    color: rgba(255, 255, 255, 0.55);
}

.plt-page-hero .plt-section-label {
    color: var(--plt-accent);
}

@media (max-width: 991px) {
    .plt-mockup {
        transform: none;
        margin-top: 3rem;
    }

    .plt-float-badge {
        display: none;
    }

    .plt-hero {
        min-height: auto;
        padding-top: 6rem;
    }
}

/* ── Auth (login / register) ── */
.plt-auth-body {
    background: #f8fafc;
}

.plt-auth-page {
    display: flex;
    min-height: 100vh;
}

.plt-auth-visual {
    position: relative;
    flex: 0 0 46%;
    max-width: 46%;
    background: var(--plt-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.plt-auth-visual .plt-hero-bg,
.plt-auth-visual .plt-grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.plt-auth-visual-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 2.5rem 3rem;
}

.plt-auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    width: fit-content;
}

.plt-auth-logo .plt-brand-logo {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: block;
}

.plt-auth-logo span {
    line-height: 1.2;
}

.plt-auth-logo .brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--plt-gradient);
    margin-right: 0.5rem;
    font-size: 1rem;
    color: #06080f;
}

.plt-auth-visual-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
    max-width: 420px;
}

.plt-auth-visual-content h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1rem;
}

.plt-auth-visual-lead {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.75rem;
}

.plt-auth-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plt-auth-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.plt-auth-features li i {
    color: #34d399;
    font-size: 1rem;
    flex-shrink: 0;
}

.plt-auth-visual-foot {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.plt-auth-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
}

.plt-auth-panel-inner {
    width: 100%;
    max-width: 400px;
}

.plt-auth-panel-inner--wide {
    max-width: 520px;
}

.plt-auth-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.plt-auth-back:hover {
    color: #4f46e5;
}

.plt-auth-heading {
    margin-bottom: 1.75rem;
}

.plt-auth-heading h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 0.35rem;
}

.plt-auth-heading p {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.plt-auth-form .form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.4rem;
}

.plt-auth-input-wrap {
    position: relative;
}

.plt-auth-input-wrap > i {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.95rem;
    pointer-events: none;
}

.plt-auth-input-wrap .form-control,
.plt-auth-form .plt-auth-input {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.plt-auth-input-wrap .form-control {
    padding-left: 2.5rem;
}

.plt-auth-input-wrap .form-control:focus,
.plt-auth-form .plt-auth-input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.15);
}

.plt-auth-field {
    margin-bottom: 1rem;
}

.plt-auth-remember {
    margin-bottom: 1.25rem;
}

.plt-auth-remember .form-check-label {
    font-size: 0.8125rem;
    color: #64748b;
}

.plt-auth-form .form-text {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

.plt-auth-submit {
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 999px;
    margin-top: 1.5rem;
}

.plt-auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
    font-size: 0.75rem;
    margin: 1.25rem 0;
}

.plt-auth-divider::before,
.plt-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.plt-auth-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.plt-auth-google:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.plt-auth-switch {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid #e2e8f0;
}

.plt-auth-switch p {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.plt-auth-switch .btn {
    padding: 0.55rem 1.5rem;
    font-size: 0.875rem;
}

.plt-auth-legal {
    margin: 1.25rem 0 0;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    line-height: 1.5;
}

.plt-auth-legal a {
    color: #6366f1;
    text-decoration: none;
}

.plt-auth-legal a:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .plt-auth-page {
        flex-direction: column;
    }

    .plt-auth-visual {
        flex: none;
        max-width: 100%;
        min-height: auto;
    }

    .plt-auth-visual-inner {
        padding: 1.5rem 1.25rem;
        min-height: auto;
    }

    .plt-auth-visual-content {
        padding: 1rem 0 0.5rem;
    }

    .plt-auth-visual-content h1 {
        font-size: 1.5rem;
    }

    .plt-auth-features {
        display: none;
    }

    .plt-auth-visual-foot {
        display: none;
    }

    .plt-auth-panel {
        padding: 1.5rem 1.25rem 2.5rem;
    }

    .plt-auth-back {
        margin-bottom: 1.25rem;
    }
}
