:root {
  --ink: #090909;
  --panel: #111;
  --line: #292929;
  --red: #e22335;
  --muted: #aaa;
}
.activation-shell {
  min-height: 100vh;
  padding: 150px clamp(24px, 7vw, 120px) 70px;
  display: grid;
  grid-template-columns: minmax(230px, 330px) minmax(0, 800px);
  gap: clamp(45px, 8vw, 120px);
  background:
    radial-gradient(circle at 10% 18%, #351018 0, transparent 27%), #090909;
  color: #f5f1ef;
}
.activation-shell aside {
  position: sticky;
  top: 130px;
  align-self: start;
  border-top: 2px solid var(--red);
  padding-top: 20px;
}
.terminal-mark {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 3px;
}
.activation-shell h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.85;
  margin: 24px 0;
}
.activation-shell h1 em {
  font-style: normal;
  color: var(--red);
}
.activation-shell aside p {
  color: var(--muted);
  line-height: 1.9;
}
.activation-card {
  border: 1px solid var(--line);
  background: #0d0d0d;
  padding: clamp(24px, 5vw, 54px);
  box-shadow: 18px 18px 0 #18080b;
}
.activation-card h2 {
  font-size: clamp(25px, 4vw, 42px);
  margin: 0 0 16px;
}
.activation-card > p {
  color: var(--muted);
  line-height: 1.8;
}
.discord-login {
  display: inline-flex;
  margin-top: 22px;
}
.applicant {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 28px;
}
.applicant img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.applicant small {
  display: block;
  color: var(--red);
}
.question {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.question label {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.7;
  display: block;
}
.question label small {
  display: block;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.question textarea {
  width: 100%;
  min-height: 125px;
  margin-top: 14px;
  background: #080808;
  color: #fff;
  border: 1px solid #333;
  padding: 16px;
  font: inherit;
  resize: vertical;
}
.question textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.submit-activation {
  margin-top: 28px;
}
.form-error {
  color: #ff7b87;
  margin-top: 20px;
}
.progress-box {
  margin-top: 38px;
}
.progress-box span,
.progress-box b {
  font-size: 12px;
}
.progress-box b {
  float: left;
}
.progress-box div {
  height: 3px;
  background: #333;
  margin-top: 12px;
}
.progress-box i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--red);
  transition: width 0.25s;
}
.success-stamp {
  color: #77e099;
  font-weight: 800;
}
.activation-loading {
  color: var(--muted);
  padding: 50px 0;
}
@media (max-width: 800px) {
  .activation-shell {
    padding-top: 110px;
    grid-template-columns: 1fr;
  }
  .activation-shell aside {
    position: static;
  }
  .activation-shell h1 {
    font-size: 50px;
  }
  .activation-shell aside p {
    max-width: 500px;
  }
}
