body.hc-auth-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #171d36;
  background:
    radial-gradient(circle at 16% 18%, rgba(250, 240, 230, 0.4), transparent 30%),
    radial-gradient(circle at 78% 14%, rgba(255, 253, 208, 0.35), transparent 28%),
    radial-gradient(circle at 20% 88%, rgba(245, 245, 220, 0.3), transparent 32%),
    radial-gradient(circle at 82% 76%, rgba(255, 248, 220, 0.25), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(252, 250, 242, 0.2), transparent 35%),
    linear-gradient(180deg, #faf7f0 0%, #f5f1e8 100%) !important;
}

.hc-auth-wrapper,
.hc-auth-shell {
  min-height: 100vh;
}

.hc-auth-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.hc-auth-stage {
  width: min(100%, 448px);
}

.hc-auth-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #56627e;
  font-size: 15px;
  text-decoration: none;
}

.hc-auth-back svg {
  width: 16px;
  height: 16px;
}

.hc-auth-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(25, 31, 55, 0.16);
  border-radius: 30px;
  padding: 36px 40px 38px;
  box-shadow: 0 24px 70px rgba(27, 34, 59, 0.12);
  backdrop-filter: blur(16px);
}

.hc-auth-brand {
  margin-bottom: 24px;
}

.hc-auth-brand img {
  display: block;
  max-width: 166px;
  width: 100%;
  height: auto;
}

.hc-auth-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f7ecd7;
  color: #e39b1d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.hc-auth-badge::before {
  content: "✧";
  margin-right: 8px;
  font-size: 13px;
}

.hc-auth-title {
  margin: 16px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.2vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: #101833;
}

.hc-auth-copy {
  margin: 0 0 28px;
  color: #65708a;
  font-size: 16px;
  line-height: 1.55;
}

.hc-auth-form {
  display: grid;
  gap: 18px;
}

.hc-auth-field label,
.hc-auth-label-row label {
  display: inline-block;
  margin-bottom: 8px;
  color: #111a35;
  font-size: 14px;
  font-weight: 700;
}

.hc-auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hc-auth-inline-link {
  color: #e39b1d;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hc-auth-inline-link:hover,
.hc-auth-switch a:hover,
.hc-auth-legal a:hover,
.hc-auth-back:hover {
  text-decoration: underline;
}

.hc-auth-field input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(28, 35, 61, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 18px;
  color: #4a5470;
  font-size: 15px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hc-auth-field input:focus {
  border-color: rgba(227, 155, 29, 0.9);
  box-shadow: 0 0 0 4px rgba(227, 155, 29, 0.12);
  background: #fff;
}

.hc-auth-field input::placeholder {
  color: #65708a;
}

.hc-auth-password-wrap {
  position: relative;
}

.hc-auth-password-wrap input {
  padding-right: 54px;
}

.hc-auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #67728b;
  transform: translateY(-50%);
  cursor: pointer;
}

.hc-auth-password-toggle svg {
  width: 18px;
  height: 18px;
}

.hc-auth-submit {
  min-height: 56px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5c651 0%, #cb8c1e 100%);
  color: #171d36;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(210, 150, 29, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(210, 150, 29, 0.26);
}

.hc-auth-legal {
  margin: -4px 0 0;
  color: #65708a;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.hc-auth-switch {
  margin: 26px 0 0;
  color: #56627e;
  font-size: 16px;
  text-align: center;
}

.hc-auth-switch a,
.hc-auth-legal a {
  color: #101833;
  font-weight: 700;
}

.hc-auth-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hc-auth-form .alert {
  border-radius: 16px;
  font-size: 14px;
}

@media (max-width: 575px) {
  .hc-auth-shell {
    padding: 18px 12px;
    align-items: flex-start;
  }

  .hc-auth-stage {
    width: 100%;
  }

  .hc-auth-back {
    margin-bottom: 18px;
  }

  .hc-auth-card {
    border-radius: 26px;
    padding: 28px 22px 30px;
  }

  .hc-auth-brand img {
    max-width: 146px;
  }

  .hc-auth-title {
    font-size: clamp(2.5rem, 10.5vw, 3.2rem);
  }

  .hc-auth-copy,
  .hc-auth-switch {
    font-size: 15px;
  }

  .hc-auth-field input,
  .hc-auth-submit {
    min-height: 54px;
  }
}
