/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Dark theme colors */
            --primary: hsl(30, 95%, 54%);
            --primary-foreground: hsl(0, 0%, 100%);
            --background: hsl(220, 20%, 10%);
            --foreground: hsl(0, 0%, 95%);
            --card: hsl(220, 18%, 14%);
            --card-foreground: hsl(0, 0%, 95%);
            --muted: hsl(220, 15%, 18%);
            --muted-foreground: hsl(220, 10%, 60%);
            --border: hsl(220, 15%, 22%);
            --radius: 0.75rem;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

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

        .section-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        @media (min-width: 640px) {
            .section-container {
                padding: 0 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .section-container {
                padding: 0 2rem;
            }
        }

        .section-padding {
            padding: 4rem 0;
        }

        @media (min-width: 768px) {
            .section-padding {
                padding: 6rem 0;
            }
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background-color: var(--background);
            padding: 1.25rem 0;
            transition: all 0.3s;
        }

        header.scrolled {
            background-color: rgba(22, 27, 34, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 0.75rem 0;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 2.5rem;
            width: auto;
        }

        @media (min-width: 768px) {
            .logo img {
                height: 3rem;
            }
        }

        nav {
            display: none;
            align-items: center;
        }

        @media (min-width: 768px) {
            nav {
                display: flex;
            }
        }

        nav a {
            padding: 0.5rem 1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--primary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            font-weight: 500;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-ghost {
            background: transparent;
            color: rgba(255, 255, 255, 0.8);
        }

        .btn-ghost:hover {
            color: var(--foreground);
            background: rgba(255, 255, 255, 0.1);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--foreground);
        }

        .btn-outline:hover {
            background: var(--muted);
        }

        .btn-primary {
            background: var(--primary);
            color: var(--primary-foreground);
            border: 1px solid var(--primary);
        }

        .btn-primary:hover {
            background: hsl(30, 95%, 48%);
        }

        .btn-lg {
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
        }

        .mobile-menu-btn {
            display: block;
            padding: 0.5rem;
            background: transparent;
            border: none;
            color: var(--foreground);
            cursor: pointer;
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu {
            display: none;
            background: var(--background);
            border-top: 1px solid var(--border);
            padding: 1rem 0;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu nav {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-menu a {
            padding: 0.75rem 1rem;
            color: rgba(255, 255, 255, 0.8);
            border-radius: var(--radius);
            transition: background 0.3s;
        }

        .mobile-menu a:hover {
            background: var(--muted);
        }

        /* Hero Section */
        .hero {
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            min-height: 100vh;
            padding-top: 5rem;
        }

        .hero-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, var(--background) 0%, var(--card) 100%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: 
                linear-gradient(to right, var(--foreground) 1px, transparent 1px),
                linear-gradient(to bottom, var(--foreground) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .hero-content {
            position: relative;
            max-width: 56rem;
            text-align: center;
            margin: 0 auto;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            background: rgba(255, 140, 50, 0.1);
            border: 1px solid rgba(255, 140, 50, 0.2);
            margin-bottom: 2rem;
            animation: fadeInUp 0.6s ease-out;
        }

        .badge-dot {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background: var(--primary);
            animation: pulse 2s infinite;
        }

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

        .badge-text {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--primary);
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease-out 0.2s backwards;
        }

        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3.75rem;
            }
        }

        .text-primary {
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            max-width: 42rem;
            margin: 0 auto 2rem;
            line-height: 1.8;
            animation: fadeInUp 0.6s ease-out 0.4s backwards;
        }

        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 1.25rem;
            }
        }

        /* Features Section */
        .features {
            background: var(--background);
        }

        .section-header {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 3rem;
        }

        @media (min-width: 768px) {
            .section-header {
                margin-bottom: 4rem;
            }
        }

        .section-label {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(255, 140, 50, 0.1);
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 9999px;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .section-header h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .section-header h2 {
                font-size: 2.5rem;
            }
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        .feature-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            width: 3rem;
            height: 3rem;
            background: rgba(255, 140, 50, 0.1);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon i {
            color: var(--primary);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            color: var(--muted-foreground);
            line-height: 1.7;
        }

        /* How It Works Section */
        .steps-container {
            display: grid;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .steps-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .steps-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .step {
            position: relative;
        }

        .step-number-wrapper {
            margin-bottom: 1.5rem;
        }

        .step-number {
            width: 4rem;
            height: 4rem;
            background: var(--card);
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .step-title {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .step-description {
            color: var(--muted-foreground);
            line-height: 1.7;
        }

        /* About Section */
        .about {
            background: var(--card);
        }

        .about-content {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .about-content {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .about-text h2 {
                font-size: 2.5rem;
            }
        }

        .about-text p {
            color: var(--muted-foreground);
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
            padding: 1.5rem;
            background: var(--background);
            border-radius: var(--radius);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .pricing-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            transition: all 0.3s;
        }

        .pricing-card.featured {
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(255, 140, 50, 0.2);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-4px) scale(1.02);
            border-color: var(--primary);
        }

        .pricing-card.featured:hover {
            transform: translateY(-4px) scale(1.05);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .pricing-description {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        .pricing-price {
            text-align: center;
            margin-bottom: 2rem;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
        }

        .price-period {
            color: var(--muted-foreground);
            font-size: 1rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--muted-foreground);
        }

        .pricing-features li i {
            color: var(--primary);
            flex-shrink: 0;
        }

        .pricing-cta {
            width: 100%;
        }

        /* Contact Section */
        .contact {
            background: var(--background);
        }

        .contact-content {
            display: grid;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .contact-info h2 {
                font-size: 2.5rem;
            }
        }

        .contact-info p {
            color: var(--muted-foreground);
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item-icon {
            width: 3rem;
            height: 3rem;
            background: rgba(255, 140, 50, 0.1);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item-icon i {
            color: var(--primary);
        }

        .contact-item-content h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        .contact-item-content p {
            color: var(--muted-foreground);
            margin: 0;
            font-size: 0.875rem;
        }

        .contact-form {
            background: var(--card);
            padding: 2rem;
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: var(--background);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            color: var(--foreground);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
        }

        /* Footer */
        footer {
            background: rgba(220, 225, 230, 0.02);
            border-top: 1px solid var(--border);
            padding: 3rem 0;
        }

        @media (min-width: 1024px) {
            footer {
                padding: 4rem 0;
            }
        }

        .footer-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 3rem;
            }
        }

        .footer-brand img {
            height: 2.5rem;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: var(--muted-foreground);
            max-width: 28rem;
            line-height: 1.7;
        }

        .footer-section h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--muted-foreground);
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-bottom p {
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
            font-size: 0.875rem;
        }

        .footer-legal a {
            color: var(--muted-foreground);
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--muted);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }

        .social-link i {
            color: var(--foreground);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
        }
        nav a {
            font-size: 14px;
        }
        /* .process {
  padding: 90px 20px;
} */

.timeline {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* center line */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #f97316, transparent);
  transform: translateX(-50%);
}

.item {
  position: relative;
  width: 50%;
  padding: 40px 60px;
}

.item.left {
  left: 0;
  text-align: right;
}

.item.right {
  left: 50%;
  text-align: left;
}

/* orange dots */
.item::after {
  content: "";
  position: absolute;
  top: 55px;
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
}

.item.left::after {
  right: -4px;
}

.item.right::after {
  left: -4px;
}

/* step meta */
.meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.item.left .meta {
  justify-content: flex-end;
}

.step-text {
  font-size: 12px;
  letter-spacing: 1px;
  color: #94a3b8;
}

.step-num {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #f97316;
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  font-weight: 700;
  font-size: 18px;
}

/* card */
.card {
  background: linear-gradient(180deg, #1f2937, #111827);
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 28px;
  max-width: 420px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.item.left .card {
  margin-left: auto;
}

.card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #9ca3af;
}

/* mobile */
@media (max-width: 900px) {
  .timeline::before {
    left: 24px;
  }

  .item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px;
    text-align: left;
  }

  .item::after {
    left: 20px;
  }

  .item.left .meta {
    justify-content: flex-start;
  }

  .item.left .card {
    margin-left: 0;
  }
}
.about {
  padding: 100px 20px;
}

.about .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

/* LEFT */
.eyebrow {
  color: #f97316;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.left h1 {
  font-size: 46px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}

.left h1 span {
  color: #f97316;
}

.left .lead {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #cbd5e1;
}

.left p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #9ca3af;
}

.features {
  list-style: none;
  display: grid;
  gap: 14px;
}

.features li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: #e5e7eb;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-weight: 700;
}

/* RIGHT */
.right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, #1f2937, #111827);
  border: 1px solid #1f2937;
  border-radius: 10px;
  padding: 15px 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid #f97316;
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.info-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .left h1 {
    font-size: 36px;
  }
}
.contact {
  padding: 120px 20px;
  text-align: center;
}

.wrap {
  max-width: 900px;
  margin: auto;
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  color: #f97316;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Heading */
h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Subtitle */
.subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #9ca3af;
  max-width: 620px;
  margin: 0 auto 50px;
}

/* Contact info */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon {
  width: 48px;
  height: 48px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid #f97316;
  border-radius: 12px;
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info small {
  display: block;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.info a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}

.info a:hover {
  color: #f97316;
}

/* Responsive */
@media (max-width: 640px) {
  h1 {
    font-size: 36px;
  }

  .contact-info {
    flex-direction: column;
    gap: 30px;
  }
}
.feature-card p {
    font-size: 12px;
}

/* ===== Login Section ===== */
        .login-wrapper {
            min-height: calc(100vh - 200px);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 100px 20px 50px;
        }

        .login-card {
            width: 100%;
            max-width: 420px;
            background: #28313c;
            border-radius: 14px;
            padding: 36px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            border: 1px solid var(--border);
        }

        .login-card h2 {
            margin: 0 0 10px;
            text-align: center;
            font-size: 26px;
        }

        .login-card p {
            text-align: center;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            margin-bottom: 6px;
            color: var(--text-muted);
        }

        .form-group input {
            width: 100%;
            padding: 12px 14px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: #0b0f14;
            color: var(--text-light);
            font-size: 14px;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(247, 147, 30, 0.25);
        }

        .login-btn {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: none;
            background: linear-gradient(135deg, #f7931e, #ffb347);
            color: #000;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
        }

        .login-btn:hover {
            opacity: 0.9;
        }

        .login-links {
            text-align: center;
            margin-top: 18px;
            font-size: 13px;
        }

        .login-links a {
            color: var(--accent);
            text-decoration: none;
        }

        .login-links a:hover {
            text-decoration: underline;
        }
/* ends */