.author-register-shell {
  padding: 2.75rem 0 5rem;
}

.author-register-grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 961px) {
  .author-register-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.88fr);
  }
}

.author-register-copy {
  max-width: 43rem;
}

.author-register-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.author-register-copy h1 {
  margin: 0.55rem 0 1rem;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.25rem);
  line-height: 0.95;
  color: var(--text);
}

.author-register-lead {
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
}

.author-register-inline-link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.author-register-inline-link:hover {
  text-decoration: underline;
}

.author-register-panel {
  display: grid;
  gap: 1.35rem;
}

.author-register-form-block,
.author-register-success {
  padding: 0;
  background: transparent;
}

.author-register-form-block h2,
.author-register-success h2 {
  margin: 0.5rem 0 1rem;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.02;
  color: var(--text);
}

.author-register-success p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
}

.author-register-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 1rem;
  padding: 0.82rem 1.08rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  background: rgba(252, 251, 243, 0.92);
}

.author-register-form {
  display: grid;
  gap: 1rem;
}

.author-register-footer-link {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.92rem;
}

.author-register-footer-link a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.author-register-footer-link a:hover {
  text-decoration: underline;
}

.author-register-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.author-register-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.author-register-field input,
.author-register-field textarea,
.author-register-field select {
  width: 100%;
}

.author-register-errors {
  border: 1px solid rgba(220, 38, 38, 0.16);
  background: rgba(254, 242, 242, 0.95);
  color: rgb(153, 27, 27);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
}

.author-register-submit {
  min-height: 3.15rem;
  margin-top: 0.2rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid #111111;
  border-radius: 12px;
  background: #111111;
  color: #f5f0e8;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.author-register-submit:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .author-register-grid {
    grid-template-columns: 1fr;
  }

  .author-register-shell {
    padding-top: 1.8rem;
  }

  .author-register-panel {
    gap: 1.1rem;
  }

  .author-register-row {
    grid-template-columns: 1fr;
  }
}
