body.auth-page {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #10213f;
  background:
    radial-gradient(circle at top left, rgba(19, 111, 209, 0.2), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(40, 184, 156, 0.18), transparent 24%),
    linear-gradient(145deg, #eef3fb 0%, #e4ebf7 48%, #dbe6f6 100%);
}

.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-frame {
  width: min(1120px, 100%);
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(360px, 0.95fr);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(183, 199, 226, 0.75);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 36px 80px -40px rgba(16, 33, 63, 0.45);
  backdrop-filter: blur(10px);
}

.auth-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(160deg, rgba(7, 35, 86, 0.96), rgba(11, 65, 130, 0.92) 58%, rgba(16, 122, 186, 0.85)),
    #0f2b57;
  color: #f8fbff;
}

.auth-hero::before,
.auth-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.auth-hero::before {
  width: 360px;
  height: 360px;
  right: -90px;
  top: -120px;
  background: radial-gradient(circle, rgba(134, 239, 172, 0.3), rgba(134, 239, 172, 0));
}

.auth-hero::after {
  width: 280px;
  height: 280px;
  left: -100px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.36), rgba(96, 165, 250, 0));
}

.auth-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 3.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-logo {
  width: 168px;
  max-width: 100%;
  display: block;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 12px 24px rgba(2, 6, 23, 0.18));
}

.auth-kicker,
.auth-panel-kicker {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

.auth-kicker {
  color: rgba(232, 242, 255, 0.82);
}

.auth-title {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3.2vw, 3.5rem);
  line-height: 1.02;
  font-weight: 800;
  max-width: 10ch;
}

.auth-copy {
  margin: 0;
  max-width: 30rem;
  color: rgba(232, 242, 255, 0.8);
  font-size: 1rem;
  line-height: 1.75;
}

.auth-points {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.auth-points li {
  position: relative;
  padding-left: 1.45rem;
  color: rgba(245, 249, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 600;
}

.auth-points li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #5eead4, #93c5fd);
  box-shadow: 0 0 0 0.28rem rgba(147, 197, 253, 0.16);
}

.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(246, 249, 255, 0.96)),
    #ffffff;
}

.auth-panel-inner {
  width: min(430px, 100%);
  padding: 3.5rem 3rem;
}

.auth-panel-kicker {
  color: #0a5db5;
}

.auth-heading {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 800;
  color: #10213f;
}

.auth-subtitle {
  margin: 0.75rem 0 1.75rem;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.65;
}

.auth-warning {
  display: none;
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid #f7c2bf;
  background: #fff0ef;
  color: #b42318;
  font-size: 0.9rem;
  font-weight: 700;
}

.auth-form {
  display: grid;
  gap: 0.95rem;
}

.auth-label {
  display: block;
  margin: 0.2rem 0 0.1rem;
  color: #42526b;
  font-size: 0.86rem;
  font-weight: 700;
}

.auth-input-shell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 58px;
  padding: 0 1rem;
  border-radius: 18px;
  border: 1px solid #ced9ec;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.auth-input-shell:focus-within {
  border-color: #1570d1;
  box-shadow: 0 0 0 0.28rem rgba(21, 112, 209, 0.14);
  transform: translateY(-1px);
}

.auth-input-icon {
  width: 1.2rem;
  color: #7b8ba7;
  font-size: 0.98rem;
  text-align: center;
  flex: 0 0 auto;
}

.auth-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #10213f;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.auth-input::placeholder {
  color: #94a3b8;
  font-weight: 600;
}

.auth-submit {
  margin-top: 0.75rem;
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a5db5 0%, #1570d1 55%, #16a3c8 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 18px 28px -18px rgba(10, 93, 181, 0.7);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px -20px rgba(10, 93, 181, 0.78);
  filter: saturate(1.05);
}

.auth-submit:active {
  transform: translateY(0);
}

@media (max-width: 960px) {
  .auth-shell {
    padding: 1.25rem;
  }

  .auth-frame {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .auth-hero-inner,
  .auth-panel-inner {
    padding: 2.4rem 2rem;
  }

  .auth-title {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .auth-shell {
    padding: 0.75rem;
  }

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

  .auth-hero-inner,
  .auth-panel-inner {
    padding: 1.75rem 1.25rem;
  }

  .auth-logo {
    width: 132px;
    margin-bottom: 1.15rem;
  }

  .auth-heading {
    font-size: 1.75rem;
  }

  .auth-input-shell,
  .auth-submit {
    min-height: 54px;
    border-radius: 16px;
  }
}
