  :root {
      --bg-body: #05070a;
      --card-bg: #0d1117;
      --card-border: #21262d;
      --accent-red: #2563eb;
      --accent-blue: #00d1b2;
      --text-secondary: #fff;
  }

  body {
      background-color: var(--bg-body);
      color: #ffffff;
      font-family: sans-serif;
  }

  .btn-red {
      background-color: var(--accent-red);
      color: white;
      border: none;
      padding: 10px 25px;
      border-radius: 5px;
  }
.footer-brand img {
  width: 140px;
}
  .btn-red:hover {
      background-color: #0000cc;
      color: white;
  }

  .text-secondary-custom {
      color: var(--text-secondary);
  }

  /* Navbar */

  /* Base Header */
#mainHeader {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.4s ease;
  background: #111827f2;
}


  /* Navbar Style */
  .custom-navbar {
      padding: 14px 0;
      background: transparent;
      transition: all 0.4s ease;
  }

  /* Fixed on Scroll */
  #mainHeader.fixed {
      position: fixed;
      background: #111827f2;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(17, 24, 39, 0.4);
  }

  /* Links */
  .nav-link {
      color: #cfcfcf;
      font-weight: 500;
  }

  .nav-link:hover {
      color: #fff;
  }

  /* Button */
  .btn-red {
      background: #2563eb;
      border: none;
      color: #fff;
  }

  .btn-red:hover {
      background: #1d4ed8;
  }

  /* Smooth Scroll */
  html {
      scroll-behavior: smooth;
  }

.hero-section {
  padding: 120px 0 80px;
  text-align: center;
  background: radial-gradient(circle at center, #4c1d95 0%, #1e3a8a 100%);
  background-image: url(https://images.pexels.com/photos/7567444/pexels-photo-7567444.jpeg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-section::before{
    position: absolute;
    content: '';
     background: radial-gradient(circle at center, #4c1d95 0%, #1e3a8a 100%);
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     opacity: .8;
}
.hero-section .container-fluid {
  position: relative;
}
  /* Top Badge */
.top-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  background-color: rgba(37, 99, 235, 0.3);
  border: rgba(37, 99, 235, 0.4);
}

  /* Heading & Gradient Text */
  .hero-title {
      font-size: 4.5rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 25px;
      letter-spacing: -1px;
  }

  .gradient-text {
      background: linear-gradient(90deg, #2563eb 0%, #3737af 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .hero-subtitle {
      font-size: 1.15rem;
      color: #9ca3af;
      max-width: 750px;
      margin: 0 auto 40px;
      line-height: 1.6;
  }

  /* Buttons with exact Gradient */
  .btn-container-fluid {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 80px;
  }
  .footer-brand .text-danger {
    color: #2563eb !important;
}

  .btn-gradient {
      background:linear-gradient(90deg, #2563eb 0%, #3737af 100%);
      color: white;
      padding: 14px 28px;
      border-radius: 8px;
      border: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.2s, opacity 0.2s;
      text-decoration: none;
  }

  .btn-gradient:hover {
      transform: translateY(-2px);
      color: white;
      opacity: 0.95;
  }

  .btn-outline {
      background: transparent;
      color: white;
      padding: 14px 28px;
      border-radius: 8px;
      border: 1px solid #333;
      font-weight: 600;
      transition: all 0.3s;
      text-decoration: none;
  }

  .btn-outline:hover {
      background: #ffffff10;
      border-color: #666;
      color: white;
  }

  /* Stats Section */
  .stats-grid {
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
      margin-top: 40px;
  }

  .stat-item {
      text-align: center;
  }

  .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #2563eb;
      margin-bottom: 4px;
  }

  .stat-label {
      font-size: 0.85rem;
      color: #9ca3af;
      text-transform: capitalize;
  }



  /* Sections */
 .section-gap {
  padding: 100px 0;
  background: #1f2937;
}
.custom-card {
  background: #101725;
  border: 1px solid #101725;
  border-radius: 8px;
  padding: 30px;
}
.btn-outline-dark:hover {
  background: linear-gradient(90deg, #581c87, #3b82f6) !important;
}

  /* Steps */
  .step-circle {
      width: 50px;
      height: 50px;
      background: var(--accent-red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-weight: bold;
      font-size: 22px;
  }

  /* Results */
  .result-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
      font-size: 14px;
  }

  .win-green {
  color: #2563eb;
}
.fa-solid.fa-bullseye.me-2 {
  margin-right: 0 !important;
}

  /* Pricing */
  .pricing-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      padding: 25px;
      border-radius: 12px;
      height: 100%;
  }

  .feature-card h5 {
      font-size: 22px;
  }

  .pricing-card.popular {
      border: 2px solid var(--accent-blue);
      position: relative;
  }

  .badge-popular {
      position: absolute;
      top: -12px;
      right: 20px;
      background: var(--accent-blue);
      color: black;
      font-size: 10px;
      font-weight: bold;
      padding: 2px 10px;
      border-radius: 10px;
  }

  .discount-tag {
      background: rgba(230, 57, 70, 0.2);
      color: var(--accent-red);
      font-size: 10px;
      padding: 2px 5px;
      border-radius: 3px;
      font-weight: bold;
  }

  .features-section {
      padding: 100px 0;
      background: #111827;
  }

.feature-card {
  background: #1f2937;
  border: 1px solid #111827;
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  transition: all .3s ease;
}

  .feature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 0, 255, .6);
  }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgb(37, 99, 235);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

/* Common icon style */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
}

/* Card 1 */
.row > div:nth-child(1) .feature-icon {
    background:#1e3a8a;
}

/* Card 2 */
.row > div:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

/* Card 3 */
.row > div:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #06b6d4, #0e7490);
}

/* Card 4 */
.row > div:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

/* Card 5 */
.row > div:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #f97316, #c2410c);
}

/* Card 6 */
.row > div:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #ef4444, #991b1b);
}

  .feature-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
  }
.logoimg {
  width: 150px;
  margin-bottom: 40px;
}
  .feature-card p {
      color: #9ca3af;
      font-size: 15px;
      line-height: 1.6;
  }


  /* testimonil section css */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient( 135deg, #1f2b3a 0%, #162233 40%, #0e1623 75%, #0a111b 100% );
}
.testimonial-card {
  background: #1f2937;
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
}
  .testimonial-stars {
      color: #2563eb;
      margin-bottom: 12px;
  }

  .quote-icon {
      color: #2563eb;
      font-size: 34px;
      line-height: 1;
      margin-bottom: 12px;
  }

  .testimonial-text {
      color: #d1d5db;
      font-size: 15px;
      line-height: 1.7;
  }

  .user-info {
      display: flex;
      align-items: center;
      margin-top: 25px;
  }

  .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #2563eb;
      color: #fff;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      font-size: 14px;
  }

  .user-name {
      font-weight: 600;
      color: #fff;
  }

  .user-role {
      font-size: 13px;
      color: #9ca3af;
  }

 .section-gap.text-center {
  background-color: #111827f2;
}
  /* pricing section css */
  .pricing-section {
      background: radial-gradient(circle at top, #0b1220, #020617 70%);
      padding: 100px 0;
  }

  .win-green.one {
      background-color: rgba(34, 197, 94, 0.1);
      border-radius: 30px;
      font-size: 12px;
      padding: 2px 5px;
  }

  .pricing-card {
      background: linear-gradient(180deg, #0b1220, #050b18);
      border: 1px solid #111827;
      border-radius: 16px;
      padding: 28px;
      height: 100%;
      position: relative;
  }

  .pricing-card.active {
      border: 1px solid #581c87;
      box-shadow: 0 0 25px rgba(34, 197, 94, .15);
  }

  .plan-title {
      font-size: 14px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #fff;
      font-weight: 600;
      position: relative;
      margin-bottom: 10px;
  }

  .plan-title::before {
      position: absolute;
      content: '';
      width: 25px;
      height: 2px;
      background: #fff;
      top: 25px;
      border-radius: 20px;
  }

  .discount-badge {
      display: inline-block;
      background: #2563eb;
      color: #fff;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 6px;
      margin: 10px 0;
  }

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #581c87;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .06em;
}

  .old-price {
      text-decoration: line-through;
      color: #6b7280;
      font-size: 18px;
      font-weight: 700;
  }

  .price.green {
      color: #22c55e;
      font-size: 30px;
      font-weight: 700;
  }

  .price.blue small {
      font-size: 18px;
  }

  .price.green small {
      font-size: 18px;
  }

  .price.blue {
      color: #3b82f6;
      font-size: 30px;
      font-weight: 700;
  }

  .old-price {
      text-decoration: line-through;
      color: #6b7280;
      font-size: 14px;
  }

  .save-text {
      color: #22c55e;
      font-size: 13px;
      margin-bottom: 12px;
  }

  .features li {
      font-size: 14px;
      margin-bottom: 10px;
      color: #d1d5db;
  }

  .btn-outline-dark {
      border: 1px solid #1f2937;
      color: #fff;
  }


 .btn-gradienttwo {
  background: linear-gradient(90deg, #581c87, #3b82f6);
  color: #fff;
  border: none;
}

  .old-price .save-text {
      display: inline-block;
      padding-left: 10px;
      text-transform: uppercase;
      margin-bottom: 0;
  }

  /* CUSTOM PRICING COLUMN WIDTH */
  .pricing-col {
      flex: 0 0 22%;
      max-width: 19%;
  }



  .section-gap.text-center h5 {
      font-weight: bold;
  }

  /* CTA SECTION */
  .cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #4c1d95 0%, #1e3a8a 100%);
}

  /* Optional subtle border top */
  .cta-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  }

  .cta-title {
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 15px;
      font-size: 2.25rem;
      line-height: 2.5rem;
  }

  .cta-subtitle {
      font-size: 18px;
      color: #cfcfcf;
      margin-bottom: 40px;
  }

  /* Buttons */
  .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  .cta-btn {
      padding: 14px 32px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all .3s ease;
  }

  .cta-btn.btn-primary {
      background: #2563eb;
      border: none;
  }

  .cta-btn.btn-primary:hover {
      background: #2563eb;
      transform: translateY(-2px);
  }
  .footer-brand span {
    text-transform: uppercase;
    letter-spacing: 1px;
}

  .cta-btn.outline {
      background: #2563eb;
      border: none;
  }

  .cta-btn.outline:hover {
      background: #2563eb;
      transform: translateY(-2px);
  }

  .site-footer {
      background: #111827f2;
      padding: 80px 0 40px;
      color: #b5b5b5;
  }

  .footer-brand {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
  }

  .footer-brand i {
      color: #2563eb;
  }

  .footer-text {
      font-size: 14px;
      line-height: 1.7;
      margin-top: 12px;
  }

  .footer-title {
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 18px;
  }

  .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-links li {
      margin-bottom: 10px;
  }

  .footer-links a {
      color: #9aa0a6;
      font-size: 14px;
      text-decoration: none;
      transition: 0.3s;
  }

  .footer-links a:hover {
      color: #fff;
  }

 .footer-divider {
  border-top: 1px solid #959ba1;
  margin: 40px 0 25px;
}

  .footer-bottom p {
      margin-bottom: 10px;
      font-size: 14px;
  }

  .footer-disclaimer {
      color: #6f767d;
      font-size: 12px;
      line-height: 1.7;
      display: block;
      max-width: 1100px;
      margin: 0 auto;
  }

  /* contact us page css */


.contact-hero {
    padding: 100px 0 60px;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.contact-hero span {
    color: #2563eb;
}

.contact-hero p {
    color: #b8c0cc;
    max-width: 700px;
    margin: auto;
}

.info-card {
  border: 1px solid #111827;
  border-radius: 12px;
  padding: 40px 25px;
  background-color: #111827;
  height: 300px;
}

.info-card i {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 15px;
}
.info-card p {
  color: hwb(216 82% 14.1%);
}
.info-card span {
    color: #2563eb;
}

.form-card,
.why-card {
    background: #0d1117;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 30px;
}

.form-control {
    background: #111827;
    border: 1px solid #1f2937;
    color: #fff;
}

.form-control::placeholder {
    color: #6b7280;
}

.btn-red {
    background: #2563eb;
    border: none;
    padding: 12px;
    font-weight: 600;
}

.why-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.why-item i {
    color: #2563eb;
    font-size: 20px;
}

.hours-box {
    background: #111827;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.faq-section {
    padding: 80px 0;
}

.faq-card {
    background: #0d1117;
    border: 1px solid #1f2937;
    padding: 25px;
    border-radius: 12px;
}
.contact-section {
  background: radial-gradient(circle at top, #0b1220, #05070a);
  color: #fff;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #b8c0cc;
  font-size: 14px;
  margin-bottom: 25px;
}

.card-dark {
  background: linear-gradient(180deg, #0f172a, #0b1220);
  border: 1px solid #1f2937;
  border-radius: 12px;
}

label {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.dark-input {
  background: #111827;
  border: 1px solid #1f2937;
  color: #fff;
  padding: 10px 14px;
}

.dark-input::placeholder {
  color: #6b7280;
}

.dark-input:focus {
  background: #111827;
  border-color: #2563eb;
  box-shadow: none;
  color: #fff;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 255, .15);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 18px;
}

.card-dark h5 {
  font-size: 18px;
  margin-bottom: 6px;
}

.card-dark p {
  font-size: 14px;
  color: #b8c0cc;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: #cbd5e1;
}

.btn-danger {
  background: #2563eb;
  border: none;
}

.btn-danger:hover {
  background: #2563eb;
}
.alert.alert-danger.small {
  background-color: rgba(0, 0, 255, .1);
  border-color: rgba(0, 0, 255, 0.2);
}
.alert.alert-danger.small.mb-0 {
  color: #2563eb;
}

.faq-section {
  background: radial-gradient(circle at top, #0b1220, #05070a);
  color: #ffffff;
}

.faq-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-subtitle {
  color: #b8c0cc;
  font-size: 15px;
}

.faq-card {
  background: linear-gradient(180deg, #0f172a, #0b1220);
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  height: 100%;
  transition: all 0.3s ease;
}

.faq-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.faq-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
}
.info-card h5 {
  font-weight: 700;
  margin-bottom: 20px;
}

/* about us page css */
.about-hero {
  background: radial-gradient(circle at right, #0b1c3d, #000);
  padding: 120px 0 80px;
}

.about-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.about-content {
  background: #000;
  color: #fff;
  padding: 60px 0 80px;
}

.content-block {
  max-width: 900px;
  margin-bottom: 45px;
}

.content-block h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.content-block p {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.7;
}

.deliver-list {
  list-style: disc;
  padding-left: 20px;
}

.deliver-list li {
  margin-bottom: 10px;
  color: #cbd5e1;
  font-size: 15px;
}

.deliver-list strong {
  color: #ffffff;
}

.about-highlight {
  margin-top: 50px;
}

.about-highlight p {
  font-size: 16px;
  font-weight: 600;
  color: #2563eb;
}

.about-highlight span {
  font-weight: 700;
}
.container.wrapper {
  width: 1000px;
}

/* disclamer pages css */
.legal-hero {
  background: radial-gradient(circle at right, #0b1c3d, #000);
  padding: 120px 0 80px;
}

.legal-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.legal-content {
  background: #000;
  color: #fff;
  padding: 60px 0 80px;
}

.legal-block {
  max-width: 900px;
  margin-bottom: 35px;
}

.legal-block h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.legal-block h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.effective-date {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 15px;
}

.legal-block p {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.7;
}

.legal-list {
  padding-left: 20px;
  margin-top: 10px;
}

.legal-list li {
  color: #cbd5e1;
  font-size: 14.5px;
  margin-bottom: 6px;
}

.contact-links a {
  color: #2563eb;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

.legal-footer {
  max-width: 900px;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 40px;
}
/* term of services css */
.legal-hero {
  background: radial-gradient(circle at right, #0b1c3d, #000);
  padding: 120px 0 80px;
}

.legal-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}

.legal-content {
  background: #000;
  color: #fff;
  padding: 60px 0 80px;
}

.legal-block {
  max-width: 900px;
  margin-bottom: 35px;
}

.legal-block h3 {
  font-size: 26px;
  font-weight: 600;
}

.legal-block h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.effective-date {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 15px;
}

.legal-block p {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.7;
}

.legal-list {
  padding-left: 20px;
  margin-top: 10px;
}

.legal-list li {
  color: #cbd5e1;
  font-size: 14.5px;
  margin-bottom: 6px;
}

.contact-links a {
  color: #2563eb;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

.legal-footer {
  max-width: 900px;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 40px;
}


.login-card {
            width: 380px;
            background: linear-gradient(180deg, #222, #1b1b1b);
            border-radius: 10px;
            padding: 30px;
            color: #fff;
            box-shadow: 0 0 30px rgba(0,0,0,0.6);
            margin: 110px auto;
            text-align: center;
        }

        .login-card h2 {
            text-align: center;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .login-card p {
            text-align: center;
            font-size: 14px;
            color: #aaa;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 18px;
            position: relative;
        }

        .form-group input {
            width: 100%;
            height: 46px;
            background: #2a2a2a;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 0 14px;
            color: #fff;
            outline: none;
        }

        .form-group input::placeholder {
            color: #aaa;
        }

        .form-group .eye {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #bbb;
            cursor: pointer;
        }

        .btn-login {
            width: 100%;
            height: 46px;
            border: none;
            border-radius: 8px;
            background: #2563eb; /* BLUE BUTTON */
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-login:hover {
            background: #1565c0;
        }

        .forgot {
            text-align: right;
            margin-top: 10px;
        }

        .forgot a {
            color: #42a5f5;
            font-size: 14px;
            text-decoration: none;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 22px 0;
            color: #777;
            font-size: 14px;
        }

        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #444;
        }

        .divider span {
            padding: 0 10px;
        }

        .google-btn {
            width: 100%;
            height: 44px;
            background: #fff;
            border-radius: 8px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            cursor: pointer;
        }

        .google-btn img {
            width: 18px;
        }

        .register {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: #aaa;
        }

        .register a {
            color: #42a5f5;
            text-decoration: none;
        }

        @media(max-width: 420px){
            .login-card {
                width: 90%;
            }
        }
          .register-card h2 {
            text-align: center;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .register-card p {
            text-align: center;
            font-size: 14px;
            color: #aaa;
            margin-bottom: 22px;
        }

        .form-group {
            margin-bottom: 14px;
        }

        .form-group input {
            width: 100%;
            height: 46px;
            background: #2b2b2b;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 0 14px;
            color: #fff;
            outline: none;
        }

        .form-group input::placeholder {
            color: #aaa;
        }

        .terms {
            display: flex;
            gap: 10px;
            font-size: 13px;
            color: #bbb;
            margin: 12px 0 18px;
        }

        .terms input {
            margin-top: 4px;
        }

        .terms a {
            color: #2563eb;
            text-decoration: none;
        }

        .btn-register {
            width: 100%;
            height: 46px;
            background: #2563eb;
            border: none;
            border-radius: 8px;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-register:hover {
            background: #0000cc;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 22px 0;
            font-size: 14px;
            color: #777;
        }

        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #444;
        }

        .divider span {
            padding: 0 10px;
        }

        .google-btn {
            width: 100%;
            height: 44px;
            background: #fff;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
        }

        .google-btn img {
            width: 18px;
        }

        .login-link {
            text-align: center;
            margin-top: 18px;
            font-size: 14px;
            color: #aaa;
        }

        .login-link a {
            color: #2563eb;
            text-decoration: none;
        }

        .support {
            text-align: center;
            font-size: 13px;
            color: #777;
            margin-top: 10px;
        }

        .support a {
            color: #2563eb;
            text-decoration: none;
        }

        @media (max-width: 420px) {
            .register-card {
                width: 90%;
            }
        }