body.page-login {
  --login-ink: #140b02;
  --login-muted: #725d33;
  --login-line: rgba(184, 142, 45, 0.34);
  --login-gold: #c79a2f;
  --login-cream: #f5eedf;
  background: #efe7d4;
}

body.page-login .ga-float-cta {
  display: none !important;
}

body.page-login #contents {
  min-height: auto !important;
}

.login-v2 {
  padding: clamp(34px, 5vw, 70px) 0 clamp(42px, 6vw, 84px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0)),
    #efe7d4;
}

.login-v2 .container {
  width: min(1120px, calc(100% - 42px));
  margin: 0 auto;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.login-copy {
  border-top: 1px solid var(--login-line);
  padding-top: clamp(24px, 4vw, 48px);
}

.login-eyebrow,
.login-note,
.login-submit,
.login-actions a {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

.login-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9a741e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.login-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--login-gold);
}

.login-copy h1 {
  margin: 16px 0 18px;
  max-width: 9.8em;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  color: var(--login-ink);
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

.login-copy h1 em {
  color: var(--login-gold);
  font-style: italic;
}

.login-copy p {
  max-width: 46ch;
  margin: 0;
  color: #4b3a1c;
  font-family: "Manrope", "Pretendard Variable", sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.68;
}

.login-card {
  border: 1px solid rgba(184, 142, 45, 0.28);
  border-radius: 8px;
  background: rgba(255, 252, 243, 0.82);
  box-shadow: 0 24px 58px rgba(43, 29, 6, 0.12);
  padding: clamp(24px, 4vw, 42px);
}

.login-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(184, 142, 45, 0.22);
}

.login-card__head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  color: var(--login-ink);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.login-card__status {
  white-space: nowrap;
  color: #8a6719;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.login-field {
  display: grid;
  gap: 9px;
  margin-bottom: 17px;
}

.login-field label {
  color: var(--login-ink);
  font-family: "Manrope", "Pretendard Variable", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.login-field input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(159, 122, 41, 0.42);
  border-radius: 8px;
  background: rgba(245, 238, 223, 0.82);
  box-sizing: border-box;
  padding: 0 16px;
  color: var(--login-ink);
  font-family: "Manrope", "Pretendard Variable", sans-serif;
  font-size: 16px;
  font-weight: 700;
  outline: none;
}

.login-field input::placeholder {
  color: rgba(114, 93, 51, 0.45);
  font-style: italic;
}

.login-field input:focus {
  border-color: var(--login-gold);
  box-shadow: 0 0 0 3px rgba(199, 154, 47, 0.14);
}

.login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 6px;
  border-radius: 999px;
  background: #150b02;
  color: #f7e2a4 !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.login-submit:hover {
  background: #2b1906;
}

.login-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 20px;
}

.login-actions a {
  color: #8a6719;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.login-actions a:hover {
  color: var(--login-ink);
}

.login-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--login-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.login-note::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0e9ccb;
}

@media (max-width: 820px) {
  .login-v2 {
    padding: 24px 0 42px;
  }

  .login-v2 .container {
    width: min(100% - 32px, 560px);
  }

  .login-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .login-copy {
    padding-top: 18px;
  }

  .login-copy h1 {
    max-width: 8.4em;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.96;
  }

  .login-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .login-card {
    padding: 22px 18px;
  }

  .login-card__head {
    align-items: center;
    margin-bottom: 20px;
  }

  .login-card__head h2 {
    font-size: 32px;
  }

  .login-field input {
    height: 52px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .login-v2 .container {
    width: calc(100% - 28px);
  }

  .login-copy h1 {
    font-size: 38px;
  }

  .login-card {
    padding: 20px 14px;
  }

  .login-card__status {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .login-actions {
    gap: 10px 12px;
  }
}
