.access-head {
  grid-template-columns: 1fr auto;
}
.access-main {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: center;
  padding: 10vh clamp(24px, 8vw, 120px);
}
.access-copy h1 {
  margin: 0;
  font: 300 clamp(3.2rem, 8vw, 6.5rem)/0.95 var(--mono);
}
.access-copy > p:last-child {
  margin-top: 34px;
  color: var(--muted);
}
.access-form {
  display: grid;
  gap: 34px;
  max-width: 500px;
}
.access-form label {
  display: grid;
  gap: 10px;
}
.access-form [hidden] {
  display: none !important;
}
.access-form fieldset {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  border: 0;
}
.access-form legend {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}
.website-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.access-form .website-choice {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.access-form .website-choice input {
  width: 12px;
  margin: 0;
  accent-color: var(--accent);
}
.access-form #websiteNote {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}
.access-form label span {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}
.access-form input,
.access-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #66635e;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 400 0.9rem var(--mono);
  outline: 0;
}
.access-form textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.65;
}
.access-form input:focus,
.access-form textarea:focus {
  border-color: var(--accent);
}
.access-form small {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.6;
}
.access-form button {
  justify-self: start;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  font: 400 0.75rem var(--mono);
  cursor: pointer;
}
.access-form button:disabled {
  color: var(--muted);
}
#status {
  min-height: 24px;
  color: #c8c6c0;
}
#status a {
  border-bottom: 1px solid currentColor;
}
.switch {
  color: var(--muted);
  font-size: 0.72rem;
}
.switch a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}
@media (max-width: 760px) {
  .access-main {
    grid-template-columns: 1fr;
    align-content: center;
  }
  .access-copy > p:last-child {
    margin-bottom: 40px;
  }
}
