body.hc-auth-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Fraunces", Georgia, 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;
}

body.hc-auth-body *,
body.hc-auth-body *::before,
body.hc-auth-body *::after {
  font-family: "Fraunces", Georgia, serif;
}

body.hc-auth-reset-body {
  background:
    radial-gradient(circle at 0 8%, rgba(255, 204, 0, .12), transparent 9%),
    radial-gradient(circle at 98% 100%, rgba(17, 24, 39, .08), transparent 16%),
    #ffffff !important;
}

body.hc-auth-reset-body .hc-auth-shell {
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 80px;
}

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

.hc-auth-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vh, 32px) 16px;
}

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

.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.82);
  border: 1px solid rgba(40, 32, 21, 0.18);
  border-radius: 22px;
  padding: 42px 42px 40px;
  box-shadow: 0 24px 52px rgba(27, 24, 18, 0.14);
  backdrop-filter: blur(18px);
}

.hc-auth-card-signup {
  padding-top: 42px;
  padding-bottom: 34px;
}

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

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

.hc-auth-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 13px;
  border-radius: 999px;
  background: #f7eedf;
  color: #ffc000;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

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

.hc-auth-title {
  margin: 14px 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 700;
  color: #101833;
  white-space: nowrap;
}

.hc-auth-copy {
  margin: 0 0 34px;
  color: #38405c;
  font-size: 15px;
  line-height: 1.45;
}

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

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

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

.hc-auth-inline-link {
  color: #ffc000;
  font-size: 13px;
  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: 47px;
  border: 1px solid rgba(92, 69, 43, 0.28);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0 17px;
  color: #4a5470;
  font-size: 15px;
  font-family: "Fraunces", Georgia, serif;
  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: 53px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: #ffcc00;
  color: #171d36;
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(210, 150, 29, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.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: #38405c;
  font-size: 15px;
  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;
}

.hc-auth-social {
  margin: 0 0 22px;
}

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

body.hc-auth-signup-body .hc-auth-shell {
  align-items: flex-start;
  padding-top: clamp(38px, 4vh, 54px);
  padding-bottom: 24px;
}

.hc-auth-signup-stage .hc-auth-back {
  margin: 0 0 46px;
  color: rgba(20, 20, 20, .72);
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.hc-auth-signup-stage .hc-auth-back svg {
  width: 18px;
  height: 18px;
}

.hc-auth-signup-head {
  text-align: center;
}

.hc-auth-signup-head .hc-auth-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(177, 141, 80, .32);
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  color: #ffc000;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .38em;
  padding: 0 18px;
  text-transform: uppercase;
}

.hc-auth-signup-head .hc-auth-badge::before {
  content: none;
}

.hc-auth-signup-head h1 {
  margin: 30px auto 16px;
  color: #030712;
  font-family: Fraunces, "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: .98;
}

.hc-auth-signup-head h1 span {
  color: #ffcc00;
  font-style: italic;
}

.hc-auth-signup-head p {
  width: min(560px, 100%);
  margin: 0 auto;
  color: #5f554f;
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.hc-auth-signup-stage .hc-auth-card-signup {
  width: min(520px, 100%);
  margin: 52px auto 0;
  border: 1px solid rgba(20, 20, 20, .10);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(58, 49, 32, .15);
  padding: 48px;
}

.hc-auth-signup-stage .hc-auth-signup-form {
  gap: 24px;
}

.hc-auth-signup-stage .hc-auth-field label,
.hc-auth-signup-stage .hc-auth-label-row label {
  margin-bottom: 10px;
  color: #030712;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.hc-auth-signup-stage .hc-auth-field input {
  min-height: 58px;
  border: 1px solid rgba(20, 20, 20, .14);
  border-radius: 14px;
  background: #fff;
  padding: 0 20px;
  color: #030712;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
}

.hc-auth-signup-stage .hc-auth-field input::placeholder {
  color: #9ca3af;
}

.hc-auth-signup-stage .hc-auth-submit {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 0;
  border-radius: 12px;
  background: #030303;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.hc-auth-signup-stage .hc-auth-submit span {
  font-size: 22px;
  line-height: 1;
}

.hc-auth-signup-stage .hc-auth-legal {
  margin: 0;
  color: #5f554f;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.hc-auth-signup-stage .hc-auth-legal a {
  color: #030712;
  font-weight: 500;
}

.hc-auth-signup-switch {
  margin: 30px 0 0;
  color: #5f554f;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
}

.hc-auth-signup-switch a {
  color: #030712;
  font-weight: 800;
  text-decoration: none;
}

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

.hc-auth-login-stage .hc-auth-back {
  margin: 0 0 clamp(26px, 8vh, 92px);
  color: rgba(20, 20, 20, .72);
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.hc-auth-login-stage .hc-auth-back svg {
  width: 18px;
  height: 18px;
}

.hc-auth-login-card {
  display: grid;
  grid-template-columns: 1fr .95fr;
  min-height: min(628px, calc(100vh - 170px));
  overflow: hidden;
  border: 1px solid rgba(16, 24, 42, .11);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(58, 49, 32, .16);
}

.hc-auth-login-intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 48px;
  background:
    radial-gradient(circle at 94% 2%, rgba(212, 175, 106, .16), transparent 20%),
    linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  color: #f8f1e7;
}

.hc-auth-login-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #fff6e9;
  text-decoration: none;
}

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

.hc-auth-login-copy {
  margin-top: auto;
  padding-bottom: clamp(44px, 9vh, 98px);
}

.hc-auth-login-copy .hc-auth-badge,
.hc-auth-login-panel .hc-auth-badge {
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffcc00;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .42em;
  line-height: 1;
  text-transform: uppercase;
}

.hc-auth-login-copy .hc-auth-badge::before,
.hc-auth-login-panel .hc-auth-badge::before {
  content: none;
}

.hc-auth-login-copy h1 {
  margin: 28px 0 24px;
  color: #fff6e9;
  font-family: Fraunces, "Cormorant Garamond", serif;
  font-size: 37px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.hc-auth-login-copy p {
  max-width: 396px;
  margin: 0;
  color: #d5d7df;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42;
}

.hc-auth-trust {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 14px;
  color: #aeb5c6;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
}

.hc-auth-trust span {
  display: block;
  width: 40px;
  height: 1px;
  background: #ffcc00;
}

.hc-auth-login-panel {
  min-width: 0;
  padding: 60px 58px;
  background: #fff;
}

.hc-auth-login-panel .hc-auth-title {
  margin: 24px 0 12px;
  color: #030712;
  font-family: Fraunces, "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
  white-space: normal;
}

.hc-auth-login-panel .hc-auth-copy {
  width: min(360px, 100%);
  margin: 0 0 38px;
  color: #5f554f;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hc-auth-login-panel .hc-auth-form {
  gap: 20px;
}

.hc-auth-login-panel .hc-auth-field label,
.hc-auth-login-panel .hc-auth-label-row label {
  margin-bottom: 10px;
  color: #030712;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.hc-auth-login-panel .hc-auth-inline-link {
  color: #ffc000;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.hc-auth-login-panel .hc-auth-field input {
  min-height: 58px;
  border: 1px solid rgba(20, 20, 20, .14);
  border-radius: 14px;
  background: #fff;
  padding: 0 20px;
  color: #030712;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
}

.hc-auth-login-panel .hc-auth-field input::placeholder {
  color: #9ca3af;
}

.hc-auth-login-panel .hc-auth-password-wrap input {
  padding-right: 56px;
}

.hc-auth-login-panel .hc-auth-password-toggle {
  right: 16px;
  color: #5f554f;
}

.hc-auth-login-panel .hc-auth-submit {
  min-height: 58px;
  margin-top: 0;
  border-radius: 12px;
  background: #030303;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.hc-auth-login-panel .hc-auth-switch {
  margin: 28px 0 0;
  color: #5f554f;
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
}

.hc-auth-login-panel .hc-auth-switch a {
  color: #030712;
  font-weight: 800;
  text-decoration: none;
}

.hc-auth-signup-form {
  gap: 17px;
}

.hc-auth-signup-form .hc-auth-submit {
  margin-top: 4px;
}

.hc-auth-signup-form .hc-auth-legal {
  margin: -2px 0 0;
  color: #38405c;
  font-size: 13px;
  line-height: 1.45;
}

.hc-auth-signup-form .hc-auth-legal a {
  color: #101833;
  font-weight: 500;
  text-decoration: none;
}

.hc-auth-signup-form .hc-auth-legal a:hover {
  text-decoration: underline;
}

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

.hc-auth-reset-stage .hc-auth-back {
  margin: 0 0 clamp(150px, 27vh, 248px);
  color: #4b5563;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

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

.hc-auth-reset-card {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  width: min(960px, 100%);
  min-height: 470px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(17, 24, 39, .13);
}

.hc-auth-reset-intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 55px 45px 46px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 204, 0, .20), transparent 24%),
    linear-gradient(180deg, #070707 0%, #151515 100%);
  color: #fff;
}

.hc-auth-reset-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #fff;
  text-decoration: none;
}

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

.hc-auth-reset-copy {
  margin-top: auto;
  padding-bottom: 78px;
}

.hc-auth-reset-copy .hc-auth-badge,
.hc-auth-reset-panel .hc-auth-badge {
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffcc00;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .48em;
  line-height: 1;
  text-transform: uppercase;
}

.hc-auth-reset-copy .hc-auth-badge::before,
.hc-auth-reset-panel .hc-auth-badge::before {
  content: none;
}

.hc-auth-reset-copy h1 {
  margin: 24px 0 20px;
  color: #fff;
  font-family: Fraunces, Georgia, serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.12;
}

.hc-auth-reset-copy p {
  max-width: 400px;
  margin: 0;
  color: #e5e7eb;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.hc-auth-reset-intro .hc-auth-trust {
  margin-top: auto;
  color: #aeb5c6;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 14px;
}

.hc-auth-reset-intro .hc-auth-trust span {
  width: 36px;
  background: #ffcc00;
}

.hc-auth-reset-panel {
  min-width: 0;
  padding: 58px 54px 44px;
  background: #fff;
}

.hc-auth-reset-panel .hc-auth-title {
  margin: 22px 0 13px;
  color: #030303;
  font-family: Fraunces, Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
  white-space: normal;
}

.hc-auth-reset-panel .hc-auth-copy {
  width: min(372px, 100%);
  margin: 0 0 34px;
  color: #4b5563;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.hc-auth-reset-panel .hc-auth-form {
  gap: 18px;
}

.hc-auth-reset-panel .hc-auth-field label {
  margin-bottom: 9px;
  color: #030303;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.hc-auth-reset-input {
  position: relative;
}

.hc-auth-reset-input svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 18px;
  height: 18px;
  color: #6b7280;
  transform: translateY(-50%);
  pointer-events: none;
}

.hc-auth-reset-panel .hc-auth-field input {
  min-height: 52px;
  border: 1px solid rgba(17, 24, 39, .16);
  border-radius: 13px;
  background: #fff;
  padding: 0 18px 0 49px;
  color: #030303;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 15px;
}

.hc-auth-reset-panel .hc-auth-field input::placeholder {
  color: #9ca3af;
}

.hc-auth-reset-panel .hc-auth-submit {
  min-height: 52px;
  margin-top: 0;
  border-radius: 13px;
  background: #030303;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
  color: #fff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.hc-auth-reset-panel .hc-auth-switch {
  margin: 28px 0 0;
  color: #4b5563;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 15px;
}

.hc-auth-reset-panel .hc-auth-switch a {
  color: #030303;
  font-weight: 800;
  text-decoration: none;
}

/* Verification code / change password modals - brand palette (white, black, gold) */
.modal-content:has(.hc-vc-modal) {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
}

.hc-vc-modal {
  font-family: "Fraunces", Georgia, serif;
  color: #171d36;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
}

.hc-vc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 0;
  border-bottom: 1px solid rgba(28, 35, 61, 0.1);
}

.hc-vc-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #101833;
}

.hc-vc-close {
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #56627e;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
}

.hc-vc-close:hover {
  background: #f5f1e8;
  color: #101833;
}

.hc-vc-body {
  padding: 22px 24px 24px;
}

.hc-vc-lead {
  margin: 0 0 18px;
  color: #65708a;
  font-size: 15px;
  line-height: 1.55;
}

.hc-vc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.hc-vc-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(28, 35, 61, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 16px;
  color: #101833;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-align: center;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hc-vc-input::placeholder {
  color: #b6bcca;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.hc-vc-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-vc-sent-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hc-vc-sent-label {
  color: #111a35;
  font-size: 14px;
  font-weight: 700;
}

.hc-vc-email {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  max-width: 100%;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f7ecd7;
  color: #b9810f;
  font-size: 14px;
  font-weight: 700;
  word-break: break-all;
}

.hc-vc-field {
  margin-bottom: 16px;
}

.hc-vc-field:last-child {
  margin-bottom: 0;
}

.hc-vc-flabel {
  display: inline-block;
  margin-bottom: 8px;
  color: #111a35;
  font-size: 14px;
  font-weight: 700;
}

.hc-vc-text {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(28, 35, 61, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 16px;
  color: #101833;
  font-size: 15px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.hc-vc-error {
  border-radius: 14px;
  font-size: 14px;
}

.hc-vc-footer {
  display: flex;
  justify-content: flex-end;
  padding: 18px 24px;
  border: 0;
  border-top: 1px solid rgba(28, 35, 61, 0.1);
  background: #fff;
}

.hc-vc-submit {
  min-height: 48px;
  min-width: 140px;
  border: 0;
  border-radius: 999px;
  background: #ffcc00;
  color: #171d36;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(210, 150, 29, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

@media (max-width: 575px) {
  .hc-vc-grid {
    grid-template-columns: 1fr;
  }

  .hc-vc-footer .hc-vc-submit {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .hc-auth-reset-stage {
    width: min(100%, 760px);
  }

  .hc-auth-reset-stage .hc-auth-back {
    margin-bottom: 36px;
  }

  .hc-auth-reset-card {
    grid-template-columns: 1fr;
  }

  .hc-auth-reset-intro {
    min-height: 330px;
  }

  .hc-auth-reset-copy {
    padding-bottom: 38px;
  }

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

  .hc-auth-login-stage .hc-auth-back {
    margin-bottom: 28px;
  }

  .hc-auth-login-card {
    grid-template-columns: 1fr;
  }

  .hc-auth-login-intro {
    min-height: 360px;
  }

  .hc-auth-login-copy {
    padding-bottom: 42px;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hc-auth-reset-stage .hc-auth-back {
    margin-bottom: 54px;
  }

  .hc-auth-reset-card {
    min-height: 430px;
  }

  .hc-auth-reset-intro {
    padding: 48px 44px 40px;
  }

  .hc-auth-reset-copy {
    padding-bottom: 46px;
  }

  .hc-auth-reset-panel {
    padding: 48px 52px 40px;
  }

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

  .hc-auth-login-stage .hc-auth-back {
    margin-bottom: 28px;
  }

  .hc-auth-login-card {
    min-height: min(560px, calc(100vh - 110px));
  }

  .hc-auth-login-intro {
    padding: 42px 48px;
  }

  .hc-auth-login-copy {
    padding-bottom: 44px;
  }

  .hc-auth-login-copy h1 {
    margin: 22px 0 18px;
    font-size: 34px;
  }

  .hc-auth-login-copy p {
    font-size: 16px;
  }

  .hc-auth-login-panel {
    padding: 44px 54px;
  }

  .hc-auth-login-panel .hc-auth-title {
    margin-top: 20px;
    font-size: 32px;
  }

  .hc-auth-login-panel .hc-auth-copy {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .hc-auth-login-panel .hc-auth-form {
    gap: 16px;
  }

  .hc-auth-login-panel .hc-auth-field input,
  .hc-auth-login-panel .hc-auth-submit {
    min-height: 52px;
  }
}

@media (max-width: 575px) {
  .hc-auth-reset-stage .hc-auth-back {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .hc-auth-reset-card {
    border-radius: 20px;
  }

  .hc-auth-reset-intro {
    min-height: 300px;
    padding: 34px 28px;
  }

  .hc-auth-reset-copy h1 {
    font-size: 29px;
  }

  .hc-auth-reset-copy p {
    font-size: 14px;
  }

  .hc-auth-reset-panel {
    padding: 36px 28px 32px;
  }

  .hc-auth-reset-panel .hc-auth-title {
    font-size: 30px;
  }

  .hc-auth-reset-panel .hc-auth-copy {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .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: 22px;
    padding: 28px 18px 30px;
  }

  .hc-auth-card-signup {
    padding-bottom: 28px;
  }

  .hc-auth-signup-stage .hc-auth-back {
    margin-bottom: 34px;
    font-size: 16px;
  }

  .hc-auth-signup-head h1 {
    margin-top: 24px;
    font-size: 38px;
  }

  .hc-auth-signup-head p {
    font-size: 15px;
  }

  .hc-auth-signup-stage .hc-auth-card-signup {
    margin-top: 36px;
    padding: 32px 24px;
  }

  .hc-auth-signup-stage .hc-auth-signup-form {
    gap: 20px;
  }

  .hc-auth-signup-stage .hc-auth-field input,
  .hc-auth-signup-stage .hc-auth-submit {
    min-height: 56px;
  }

  .hc-auth-signup-switch {
    font-size: 16px;
  }

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

  .hc-auth-title {
    font-size: 24px;
  }

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

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

  .hc-auth-login-stage .hc-auth-back {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .hc-auth-login-card {
    border-radius: 22px;
    background: #fff;
  }

  .hc-auth-login-intro {
    display: none;
  }

  .hc-auth-login-panel {
    padding: 36px 34px 34px;
  }

  .hc-auth-login-copy h1 {
    font-size: 31px;
  }

  .hc-auth-login-copy p,
  .hc-auth-login-panel .hc-auth-copy {
    font-size: 16px;
  }

  .hc-auth-login-panel .hc-auth-title {
    font-size: 30px;
  }

  .hc-auth-login-panel .hc-auth-copy {
    margin-bottom: 32px;
  }

  .hc-auth-login-panel .hc-auth-field input,
  .hc-auth-login-panel .hc-auth-submit {
    min-height: 56px;
  }
}
