:root {
  color-scheme: light;
  --black: #070707;
  --purple: #5400a7;
  --purple-bright: #8000ff;
  --yellow: #fac316;
  --ink: #1c1a16;
  --muted: #69645b;
  --line: #ced4da;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Tahoma, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.login-hero {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(84, 0, 167, 0.08)),
    linear-gradient(180deg, #000000 0%, var(--purple-bright) 100%);
  display: flex;
  justify-content: center;
  min-height: 520px;
  padding: 8% 16px 42px;
}

.login-box {
  background: #ffffff;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  color: #000000;
  max-width: 360px;
  padding: 30px 30px 10px;
  text-align: center;
  width: 100%;
}

.brand-lockup,
.logo-panel {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
}

.brand-lockup {
  color: #000000;
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.brand-mark,
.logo-symbol {
  align-items: center;
  background: var(--yellow);
  color: #000000;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
}

.brand-mark {
  border-radius: 50%;
  height: 36px;
  width: 36px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: #000000;
  font-size: 26px;
  font-weight: 700;
  margin: 20px 0 25px;
}

label {
  display: block;
  margin-bottom: 12px;
  text-align: left;
}

label span {
  display: none;
}

input {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  color: #111;
  font: inherit;
  font-size: 15px;
  min-height: 42px;
  padding: 11px;
  width: 100%;
}

input:focus {
  border-color: #495057;
  box-shadow: none;
  outline: 0;
}

::placeholder {
  color: #495057;
}

button {
  background: #000000;
  border: 0;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font: inherit;
  font-weight: 800;
  font-size: 14px;
  margin-top: 10px;
  min-height: 40px;
  text-transform: lowercase;
  width: 100%;
}

.support-link,
.forgot-link,
.signup-note a {
  color: #000000;
  font-weight: 700;
  text-decoration: underline;
}

.support-link {
  background: var(--yellow);
  border-radius: 30px;
  color: #000000;
  display: block;
  font-size: 0.95rem;
  margin: 14px 0 10px;
  padding: 10px 12px;
  text-decoration: none;
}

.signup-note,
.recaptcha-note,
.copyright {
  color: #000000;
  font-size: 15px;
  margin-bottom: 10px;
}

.recaptcha-note {
  color: #333333;
  font-size: smaller;
  margin: 16px 0 14px;
}

.copyright {
  color: #000000;
  margin: 0;
}

.content-section {
  background: var(--paper);
  padding: clamp(34px, 6vw, 66px) 16px;
}

.content-wrap {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

h2 {
  color: #000000;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.18;
  margin-bottom: 24px;
}

.logo-panel {
  background: var(--purple);
  border-radius: 4px;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin-bottom: 22px;
  padding: 18px 24px;
}

.logo-symbol {
  border-radius: 8px;
  height: 52px;
  width: 52px;
}

.intro {
  color: var(--muted);
  font-size: 1.05rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.keyword-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin: 28px 0 34px;
}

.keyword-grid a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-weight: 700;
  padding: 13px 12px;
  text-decoration: none;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.useful-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.useful-links a {
  color: #000000;
  font-weight: 800;
  text-decoration: underline;
}

.site-footer {
  background: var(--purple);
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  padding: 20px 16px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .login-hero {
    min-height: 560px;
  }

  .keyword-grid {
    grid-template-columns: 1fr;
  }

  .logo-panel {
    width: 100%;
  }
}
