@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #0a1224;
  --night: #050915;
  --panel: #0b1220;
  --card: #0f172a;
  --accent: #1ed1b2;
  --amber: #f7b500;
  --muted: #8aa0c2;
  --line: #1f2a3e;
  --white: #ffffff;
  --input: #f5f7fb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(30, 209, 178, 0.14), transparent 45%),
    radial-gradient(90% 90% at 80% 20%, rgba(247, 181, 0, 0.12), transparent 42%),
    var(--night);
  font-family: 'Inter', 'Space Grotesk', sans-serif;
  color: var(--ink);
  padding: 28px 18px;
}

.login-page {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-container {
  width: min(1200px, 96vw);
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(420px, 1.1fr);
  background: var(--panel);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(0, 0, 0, 0.2);
}

.onboarding {
  position: relative;
  background: linear-gradient(140deg, #0b1f3f, #0f766e);
  color: #eaf5ff;
  padding: 42px 36px;
  display: flex;
  align-items: stretch;
}

.onboarding::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.onboarding-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #b6ffe6;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.onboarding-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #f9fbff;
}

.onboarding-copy {
  color: rgba(234, 245, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 8px 0;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #e9f5ff;
}

.hero-points .bx {
  color: var(--accent);
  font-size: 18px;
}

.swiper-container {
  width: 100%;
  background: rgba(4, 9, 23, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  min-height: 260px;
}

.swiper-slide {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 16px;
  color: #f1f5f9;
}

.slide-meta h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.slide-meta p {
  color: rgba(240, 248, 255, 0.8);
  line-height: 1.6;
  font-size: 14px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(247, 181, 0, 0.14);
  color: #ffe9b6;
  font-weight: 700;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image img {
  width: 100%;
  max-width: 240px;
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.25));
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 9px;
  height: 9px;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
}

.onboarding-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
}

.stat-badge {
  background: rgba(4, 9, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 4px;
}

.stat-badge .label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: rgba(234, 245, 255, 0.72);
}

.stat-badge strong {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}

.stat-badge .helper {
  color: rgba(234, 245, 255, 0.72);
  font-size: 13px;
}

.login-form {
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
}

.login-form::before {
  content: "";
  position: absolute;
  inset: 22px 18px;
  border-radius: 20px;
  border: 1px solid rgba(10, 18, 36, 0.06);
  pointer-events: none;
}

a.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 26px 32px 0;
  position: relative;
  z-index: 1;
}

.logo-img img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

a.brand span {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.login-form-inner {
  position: relative;
  z-index: 1;
  padding: 18px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 11px;
  text-transform: uppercase;
  max-width: max-content;
}

.heading-area {
  display: grid;
  gap: 6px;
}

.heading-area h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 28px;
  color: var(--ink);
  font-weight: 700;
}

.heading-area p {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
}

.form-area {
  margin-top: 6px;
}

.form-input-area-row {
  display: grid;
  gap: 16px;
}

.form-input-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-input-col label {
  font-weight: 600;
  font-size: 13px;
  color: #1f2937;
  letter-spacing: 0.2px;
}

.form-input-col input {
  width: 100%;
  border: 1px solid #e2e8f0;
  background: var(--input);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-input-col input:focus {
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(30, 209, 178, 0.15);
  background: #fff;
}

.password-toggle {
  position: absolute;
  right: 14px;
  bottom: 13px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #0f766e;
}

.form-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #1f2937;
  cursor: pointer;
}

.custom-checkbox {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-link {
  color: #0f766e;
  font-weight: 600;
  font-size: 13px;
}

.button-warrper {
  margin-top: 16px;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(120deg, #0f766e, #14b8a6, #f7b500);
  background-size: 200% 200%;
  color: #0b1220;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 15px 28px rgba(15, 118, 110, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-position 0.4s ease;
}

.button-warrper:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 118, 110, 0.28);
  background-position: 100% 0;
}

.loginbox-row {
  display: none;
}

@media screen and (max-width: 991px) {
  .login-container {
    grid-template-columns: 1fr;
  }

  .onboarding {
    display: none;
  }

  a.brand {
    padding-top: 14px;
  }

  body {
    padding: 18px 12px;
  }

  .login-form::before {
    inset: 12px 10px;
  }
}

@media screen and (max-width: 576px) {
  .login-form-inner {
    padding: 14px 20px 26px;
  }

  .heading-area h2 {
    font-size: 24px;
  }

  .button-warrper {
    height: 46px;
  }
}
