
    :root {
      --blush: #F2C4CE;
      --rose: #E8839A;
      --deep-rose: #C4547A;
      --lavender: #DDD6F3;
      --sage: #B5C9C0;
      --cream: #FDF8F4;
      --charcoal: #2C2C2C;
      --muted: #888;
      --serif: 'Cormorant Garamond', serif;
      --sans: 'DM Sans', sans-serif;
      --bs-body-font-family: var(--sans);
      --bs-body-color: var(--charcoal);
      --bs-body-bg: var(--cream);
      --bs-border-radius-xl: 1rem;
    }

    html, body {
      min-height: 100%;
    }

    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--charcoal);
    }

    .auth-shell {
      min-height: 100vh;
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #fce8ef 0%, #f0ccd8 45%, #ddb8cc 100%);
      min-height: 100vh;
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 15% 85%, rgba(221,214,243,0.65) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 85% 15%, rgba(232,131,154,0.3) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,255,255,0.2) 0%, transparent 60%);
      pointer-events: none;
    }

    .deco-petal {
  position: absolute;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
}

.deco-petal img {
  width: 100%;
  height: auto;
  display: block;
}

.deco-petal.top-left {
  bottom: 260px;
  left: 35px;
  width: 200px;
  transform: rotate(-25deg);
}

.deco-petal.bot-right {
  bottom: 0;
  right: 50px;
  width: 260px;
  transform: rotate(20deg);
}

.deco-petal.mid-right {
  top: 0%;
  right: 0px;
  width: 280px;
  transform: rotate(10deg);
}

    .content-layer {
      position: relative;
      z-index: 2;
    }

    /* .logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; } */
    .logo-icon img{
        width: 280px; height: 280px;
        /* display: flex; */
        align-items: center;
        justify-content: center;
    }

    .brand-badge,
    .feat-pill,
    .hero-quote,
    .glass-card {
      background: rgba(255,255,255,0.28);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.5);
      box-shadow: 0 8px 32px rgba(196,84,122,0.12);
    }

    .brand-badge {
      width: 78px;
      height: 78px;
      border-radius: 22px;
      font-size: 36px;
    }

    .brand-name,
    .form-title {
      font-family: var(--serif);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.5px;
    }

    .brand-name {
      font-size: clamp(2.75rem, 4vw, 3.4rem);
    }

    .brand-name em,
    .form-title em {
      color: var(--deep-rose);
      font-style: italic;
    }

    .brand-sub,
    .form-eyebrow,
    .field-label {
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .brand-sub {
      font-size: 0.76rem;
      color: var(--muted);
    }

    .feat-pill {
      border-radius: 16px;
      padding: 14px 20px;
    }

    .feat-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, rgba(242,196,206,0.7), rgba(232,131,154,0.4));
      border-radius: 11px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .feat-text-main {
      font-size: 0.85rem;
      font-weight: 500;
    }

    .feat-text-sub,
    .form-desc,
    .register-prompt,
    .remember-label {
      color: var(--muted);
    }

    .feat-text-sub {
      font-size: 0.73rem;
    }

    .hero-quote {
      border-radius: 18px;
      padding: 24px 28px;
      max-width: 340px;
    }

    .hero-quote blockquote {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-style: italic;
      line-height: 1.65;
      margin-bottom: 0;
    }

    .hero-quote cite {
      display: block;
      margin-top: 12px;
      font-style: normal;
      font-size: 0.74rem;
      color: var(--deep-rose);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
    }

    .form-panel {
      position: relative;
      background: #fdf5f8;
      min-height: 100vh;
    }

    .form-panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blush), var(--rose), var(--deep-rose));
    }

    .form-wrap {
      width: 100%;
      max-width: 430px;
    }

    .form-eyebrow {
      font-size: 0.74rem;
      color: var(--rose);
      font-weight: 500;
      margin-bottom: 10px;
    }

    .form-title {
      font-size: clamp(2.3rem, 4vw, 2.8rem);
      margin-bottom: 6px;
    }

    .form-desc {
      font-size: 0.85rem;
      margin-bottom: 2rem;
      font-weight: 300;
      line-height: 1.6;
    }

    .field-label {
      font-size: 0.76rem;
      font-weight: 500;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .forgot-link,
    .register-prompt a {
      color: var(--deep-rose);
      text-decoration: none;
    }

    .forgot-link:hover,
    .register-prompt a:hover {
      opacity: 0.8;
      text-decoration: underline;
    }

    .input-wrap {
      position: relative;
    }

    .input-icon {
      position: absolute;
      top: 50%;
      left: 16px;
      transform: translateY(-50%);
      font-size: 16px;
      pointer-events: none;
      opacity: 0.8;
      z-index: 2;
    }

    .form-control.nb-input {
      min-height: 52px;
      padding-left: 44px;
      border: 1.5px solid rgba(196,84,122,0.18);
      border-radius: 13px;
      color: var(--charcoal);
      box-shadow: none;
    }

    .form-control.nb-input::placeholder {
      color: #c6c6c6;
    }

    .form-control.nb-input:focus {
      border-color: var(--rose);
      box-shadow: 0 0 0 0.25rem rgba(232,131,154,0.12);
    }

    .form-check-input.nb-check {
      border-color: rgba(196,84,122,0.35);
      width: 1.1rem;
      height: 1.1rem;
      margin-top: 0.15rem;
    }

    .form-check-input.nb-check:checked {
      background-color: var(--deep-rose);
      border-color: var(--deep-rose);
    }

    .form-check-input.nb-check:focus {
      box-shadow: 0 0 0 0.25rem rgba(232,131,154,0.12);
    }

    .remember-label {
      font-size: 0.82rem;
      cursor: pointer;
    }

    .btn-submit {
      min-height: 54px;
      border: none;
      border-radius: 13px;
      background: linear-gradient(135deg, var(--rose) 0%, var(--deep-rose) 100%);
      color: #fff;
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      box-shadow: 0 6px 22px rgba(196,84,122,0.32);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-submit:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(196,84,122,0.42);
    }

    .btn-submit:active {
      transform: translateY(0);
    }

    .divider {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 24px 0;
      font-size: 0.78rem;
      color: #c5bfc2;
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(196,84,122,0.12);
    }

    .btn-google {
      min-height: 52px;
      border: 1.5px solid rgba(196,84,122,0.18);
      border-radius: 13px;
      background: #fff;
      color: var(--charcoal);
      transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .btn-google:hover {
      border-color: var(--rose);
      box-shadow: 0 4px 20px rgba(196,84,122,0.1);
      transform: translateY(-1px);
    }

    .fade-up {
      animation: fadeUp 0.8s ease both;
    }

    .delay-1 {
      animation-delay: 0.15s;
    }

    .delay-2 {
      animation-delay: 0.25s;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 991.98px) {
      .form-panel,
      .hero-panel {
        min-height: auto;
      }

      .hero-panel {
        min-height: 420px;
      }
    }