
  .auth-page {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    padding: 56px 0;
    background:
      radial-gradient(circle at top right, rgba(183,153,227,0.16), transparent 22%),
      linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  }

  .auth-shell {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
  }

  .auth-panel {
    background: #fff;
    border: 1px solid #ece8f5;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(42, 8, 95, 0.08);
  }

  .auth-brand-side {
    height: 100%;
    min-height: 420px;
    padding: 34px;
    background:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 22%),
      linear-gradient(145deg, #2a085f 0%, #6d4da9 55%, #b799e3 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .auth-brand-side::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%);
    pointer-events: none;
  }

  .auth-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
  }

  .auth-brand-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
  }

  .auth-brand-text {
    color: rgba(255,255,255,0.86);
    line-height: 1.85;
    max-width: 420px;
    margin-bottom: 1.5rem;
  }

  .auth-brand-points {
    display: grid;
    gap: 12px;
    margin-top: 1.75rem;
  }

  .auth-brand-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
  }

  .auth-brand-point-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .auth-form-side {
    padding: 38px 34px;
    background: #fff;
    height: 100%;
  }

  .auth-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b799e3;
    margin-bottom: 0.9rem;
  }

  .auth-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #111827;
    margin-bottom: 0.8rem;
  }

  .auth-subtitle {
    color: #61697a;
    line-height: 1.8;
    margin-bottom: 1.6rem;
  }

  .auth-card-muted {
    border: 1px solid #ece8f5;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fcfbff 100%);
    padding: 18px;
    margin-bottom: 1.25rem;
  }

  .auth-form-side form p,
  .auth-form-group {
    margin-bottom: 1rem;
  }

  .auth-form-side label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: #111827;
  }

  .auth-form-side input,
  .auth-form-side select,
  .auth-form-side textarea {
    width: 100%;
    border: 1px solid #dddfe6;
    border-radius: 16px;
    padding: 0.9rem 1rem;
    background: #fff;
    color: #111827;
    transition: .2s ease;
  }

  .auth-form-side input:focus,
  .auth-form-side select:focus,
  .auth-form-side textarea:focus {
    outline: none;
    border-color: #b799e3;
    box-shadow: 0 0 0 4px rgba(183,153,227,0.12);
  }

  .auth-form-side ul.errorlist {
    list-style: none;
    padding: 0;
    margin: 0 0 0.4rem 0;
    color: #b42318;
    font-size: 0.9rem;
  }

  .auth-form-side .helptext,
  .auth-help {
    display: block;
    color: #61697a;
    font-size: 0.86rem;
    margin-top: 0.4rem;
  }

  .auth-status-box {
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 1rem;
    border: 1px solid #ece8f5;
    background: linear-gradient(135deg, #ffffff 0%, #fcfbff 100%);
  }

  .auth-status-box.success {
    border-color: #c7ead5;
    background: linear-gradient(135deg, #f7fff9 0%, #ffffff 100%);
  }

  .auth-status-box.warning {
    border-color: #f5ddbf;
    background: linear-gradient(135deg, #fffaf4 0%, #ffffff 100%);
  }

  .auth-status-box-title {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.35rem;
  }

  .btn-auth-primary {
    background: #2a085f;
    color: #fff;
    border: 1px solid #2a085f;
    border-radius: 999px;
    padding: 0.95rem 1.2rem;
    font-weight: 700;
    width: 100%;
    transition: .22s ease;
  }

  .btn-auth-primary:hover {
    background: #3a0d82;
    border-color: #3a0d82;
    color: #fff;
    transform: translateY(-1px);
  }

  .auth-links-stack {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .auth-links-stack a,
  .auth-footer-link a {
    color: #2a085f;
    text-decoration: none;
    font-weight: 600;
  }

  .auth-links-stack a:hover,
  .auth-footer-link a:hover {
    color: #2a085f;
    text-decoration: underline;
  }

  .auth-footer-link {
    margin-top: 1.5rem;
    color: #61697a;
    text-align: center;
  }

  @media (max-width: 991.98px) {
    .auth-brand-side {
      min-height: 320px;
    }
  }

  @media (max-width: 767.98px) {
    .auth-page {
      padding: 28px 0;
      min-height: auto;
    }

    .auth-panel {
      border-radius: 24px;
    }

    .auth-brand-side,
    .auth-form-side {
      padding: 24px 20px;
    }

    .auth-brand-side {
      min-height: auto;
    }
  }
