:root {
  --navy: #07162f;
  --navy-2: #0b2f6b;
  --blue: #1265d8;
  --blue-dark: #0b4fb1;
  --blue-soft: #eaf2ff;
  --green: #059669;
  --green-soft: #e9f9f2;
  --orange: #ea580c;
  --orange-soft: #fff4e8;
  --slate-950: #020617;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 18px 40px rgba(15, 23, 42, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Gill Sans Extrabold", sans-serif;
  background: var(--slate-50);
  color: var(--slate-950);
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 50px 0;
}

.section-white {
  background: var(--white);
}

.section-dark {
  background:
    radial-gradient(
      circle at 85% 8%,
      rgba(96, 165, 250, 0.38),
      transparent 34%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(16, 185, 129, 0.25),
      transparent 30%
    ),
    linear-gradient(135deg, #07162f, #092c67 58%, #1265d8);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 800;
}

.section-dark .eyebrow {
  color: #6ee7b7;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #14427a, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--slate-600);
  line-height: 1.65;
}

.section-dark .section-header p {
  color: #bfdbfe;
}

.section-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  background: radial-gradient(circle at 85% 8%,rgba(96, 165, 250, 0.38),transparent 34%),
    radial-gradient(
      circle at 10% 90%,
      rgba(16, 185, 129, 0.25),
      transparent 30%
    ),
    linear-gradient(135deg, #07162f, #092c67 58%, #1265d8);
  color: var(--white);
  padding: 72px 0;
}

.hero12 {
  background:
    radial-gradient(
      circle at 85% 8%,
      rgba(96, 165, 250, 0.38),
      transparent 34%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(16, 185, 129, 0.25),
      transparent 30%
    ),
    linear-gradient(135deg, #07162f, #092c67 58%, #1265d8);
  color: var(--white);
  padding: 20px 0;
}

.ln-process {
  background-image: url(../images/banner10.jpg);
  z-index: 1;
}
.overlay-bg-black {
  background: #000;
  opacity: 0.8;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 750;
  color: #ffbb00;
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(18, 101, 216, 0.25);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-white:hover {
  background: #eff6ff;
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-panel {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.search-box {
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.16);
}

.search-grid {
  display: grid;
  /*grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr auto;*/
  gap: 10px;
}

.search-field {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  padding: 0 14px;
}

.search-field input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--slate-950);
  outline: 0;
  /*font-weight: 650;*/
  min-width: 0;
}

.search-grid select {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  padding: 0 14px;
  color: var(--slate-700);
  outline: 0;
  /*font-weight: 650;*/
  min-width: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.hero-stat {
  border-radius: 9px;
  padding: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  display: block;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 9px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: #bfdbfe;
}

.quick-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid transparent;
}

.pill-blue {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: #dbeafe;
}

.pill-orange {
  color: red;
  background: var(--orange-soft);
  border-color: #fed7aa;
}

.pill-green {
  color: var(--green);
  background: var(--green-soft);
  border-color: #bbf7d0;
}

.card h3 {
  margin: 0;
  color: var(--slate-950);
  font-size: 17px;
  line-height: 1.3;
}

.card p {
  min-height: 15px;
  margin: 10px 0 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.55;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.deadline-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.deadline-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.deadline-card h3 {
  margin: 0;
  font-size: 20px;
}

.deadline-card p {
  margin: 6px 0 0;
  color: var(--slate-600);
  line-height: 1.55;
  font-size: 14px;
}

.deadline-list {
  display: grid;
  gap: 12px;
}

.deadline-item {
  display: block;
  padding: 16px;
  border-radius: 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  transition: 0.2s ease;
}

.deadline-item:hover {
  background: var(--blue-soft);
}

.deadline-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.deadline-title {
  color: var(--slate-950);
  font-weight: 900;
  line-height: 1.35;
}

.deadline-meta {
  margin-top: 6px;
  color: var(--slate-600);
  font-size: 13px;
}

.deadline-price {
  text-align: right;
  white-space: nowrap;
}

.deadline-price strong {
  display: block;
  color: var(--slate-950);
  font-size: 14px;
}

.deadline-price span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
}

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

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

.category-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 18px;
  color: var(--blue);
  background: var(--blue-soft);
  transition: 0.2s ease;
}

.card:hover .category-icon {
  color: var(--white);
  background: var(--blue);
}

.city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  color: var(--slate-800);
  font-weight: 850;
  transition: 0.2s ease;
}

.city-card:hover {
  color: var(--blue-dark);
  border-color: #bfdbfe;
  background: var(--blue-soft);
}

.city-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bank-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 16px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: 0.2s ease;
}

.bank-card:hover {
  border-color: #bfdbfe;
  background: var(--slate-50);
}

.bank-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--slate-100);
  font-weight: 950;
  font-size: 13px;
}

.bank-card span {
  color: var(--slate-800);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

.auction-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 9px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: 0.22s ease;
}

.auction-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.auction-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.save-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--slate-200);
  color: var(--slate-500);
  background: #dadada;
  cursor: pointer;
}

.save-btn:hover {
  color: var(--blue);
  border-color: #bfdbfe;
}

.auction-card h3 {
  min-height: 54px;
  margin: 0;
  color: var(--slate-950);
  font-size: 20px;
  line-height: 1.35;
}

.auction-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--slate-600);
  font-size: 14px;
}

.meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: var(--slate-50);
}

.price-box small {
  display: block;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 850;
}

.price-box strong {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--slate-950);
  font-size: 24px;
  line-height: 1;
}

.date-grid {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 750;
}

.date-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--slate-600);
}

.date-row strong {
  color: var(--slate-950);
  text-align: right;
}

.auction-card .btn {
  width: 100%;
  margin-top: 18px;
}

.steps-card {
  padding: 28px;
  border-radius: 9px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.step-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--blue);
  margin-bottom: 18px;
}

.step-number {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.steps-card h3 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.steps-card p:last-child {
  margin: 12px 0 0;
  color: var(--slate-600);
  line-height: 1.65;
}

.trust-card {
  padding: 24px;
  border-radius: 9px;
  background: #040f3f;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-card svg {
  color: #6ee7b7;
  margin-bottom: 16px;
}

.trust-card h3 {
  margin: 0;
  color: var(--white);
}

.trust-card p {
  margin: 10px 0 0;
  color: #bfdbfe;
  line-height: 1.65;
  font-size: 14px;
}

.footer {
  background: var(--white);
  padding: 56px 0;
}
.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #424242;
  display: block;
  margin-top: 6px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 34px;
}

.footer h3,
.footer h4 {
  margin: 0;
  color: var(--slate-950);
}

.footer p {
  max-width: 440px;
  color: var(--slate-600);
  line-height: 1.65;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.footer-links a {
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--blue);
}
.social-icons1 a {
    display: inline-block;
    margin-right: 10px;
    background: radial-gradient(circle at 85% 8%, rgba(96, 165, 250, 0.38), transparent 34%), radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.25), transparent 30%), linear-gradient(135deg, #07162f, #092c67 58%, #1265d8);
    color: #ffffff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
}

.fa-facebook-f:before {
    content: "\f39e";
}
*, ::after, ::before {
    box-sizing: border-box;
}
.fa-brands, .fab
 {
    font-weight: 400;
}

.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands";
}
.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.fa-twitter:before
 {
    content: "\f099";
}

*, ::after, ::before {
    box-sizing: border-box;
}
.fa-brands, .fab {
    font-weight: 400;
}
.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands";
}
.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.fa-google-plus-g:before {
    content: "\f0d5";
}

*, ::after, ::before {
    box-sizing: border-box;
}
.fa-brands, .fab {
    font-weight: 400;
}
.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands";
}
.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}















.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #0b2f6b;
}

.icon-sm {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

@media (max-width: 1080px) {
  .hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .search-grid {
    grid-template-columns: 1fr 1fr;
  }

  .search-grid .btn {
    grid-column: 1 / -1;
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.copyright-area {
  background: var(--slate-950);
  color: #ffffff;
  padding: 15px 0;
}
.text-center {
  text-align: center !important;
}

@media (max-width: 720px) {
  .section {
    padding: 48px 0;
  }

  .hero {
    padding: 48px 0;
  }

  .section-header {
    display: block;
  }

  .section-action {
    margin-top: 16px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .search-grid,
  .grid-5,
  .grid-4,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .deadline-row {
    flex-direction: column;
  }

  .deadline-price {
    text-align: left;
  }
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  color: rgb(49, 15, 140);
}
/* NAVBAR */

.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 80px;

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

/* =========================
   LOGO
========================= */
.logo img {
  height: 60px;
}

/* =========================
   MENU
========================= */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  text-decoration: none;
  color: #0b2c5f;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 15px;
  display: block;
  border-radius: 6px;
  transition: 0.3s;
}

.nav-menu li a:hover {
  background: #f1f5ff;
  color: #0047ff;
}

/* =========================
   DROPDOWN
========================= */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index:9999;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 12px 15px;
  border-radius: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   BUTTONS
========================= */
.auth-btn {
  background: linear-gradient(135deg, #60a5fa, #34d399);
  color: #fff !important;
  padding: 10px 18px !important;
}

.auth-btn:hover {
  background: #0036c7 !important;
  color: #fff !important;
}

/* =========================
   MOBILE MENU ICON
========================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #0b2c5f;
  margin: 4px 0;
  border-radius: 5px;
  transition: 0.3s;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
        position: fixed;
        top: 68px;
        left: 190px;
        width: 56%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

  .nav-menu.active {
    max-height: 1000px;
    padding: 15px 18px;
    z-index: 9999;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    width: 100%;
    padding: 14px 20px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: #f7f9ff;
    border-radius: 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}
	/* Login Button */
	.open-btn {
		padding: 7px 24px;
		border: none;
		background: linear-gradient(135deg, #60a5fa, #34d399);
		color: #fff;
		font-size: 18px;
		border-radius: 6px;
		cursor: pointer;
	}

	/* Popup Background */
	.popup {
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		top: 0;
		left: 0;
		display: none;
		justify-content: center;
		align-items: center;
		z-index:9999;
	}

	/* Popup Box */
	.popup-content {
		width: 400px;
		background: #fff;
		border-radius: 10px;
		padding: 25px 25px 25px;
		position: relative;
		text-align: center;
		
	}

	/* Avatar */
	.avatar {
		width: 85px;
		height: 85px;
		background: radial-gradient(circle at 85% 8%, rgba(96, 165, 250, 0.38), transparent 34%), radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.25), transparent 30%), linear-gradient(135deg, #07162f, #092c67 58%, #1265d8);
		border-radius: 50%;
		position: absolute;
		top: -30px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
	}

	.avatar img {
		width: 60px;
	}

	/* Close Button */
	.close-btn {
		position: absolute;
		top: 15px;
		right: 20px;
		font-size: 25px;
		cursor: pointer;
		font-weight: bold;
	}

	h2 {
		color: #444;
		font-size: 36px;
	}

	.input-box {
		width: 100%;
		height: 48px;
		margin-bottom: 18px;
		padding: 10px;
		border: 1px solid #ccc;
		border-radius: 9px;
		font-size: 16px;
	}

	.login-btn {
		width: 100%;
		height: 40px;
		background: var(--blue);
		border: none;
		color: #fff;
		font-size: 18px;
		border-radius: 9px;
		cursor: pointer;
		margin-top: 0px;
	}

	.forgot {
		margin-top: 13px;
		background: #f1f1f1;
		padding: 7px;
		border-radius: 9px;
	}

	.forgot a {
		text-decoration: none;
		color: #0077cc;
		font-size: 18px;
	}
