.access-page {
  background:
    radial-gradient(circle at top left, rgba(47, 111, 107, 0.13), transparent 34%),
    linear-gradient(180deg, #f6faf8 0%, #eef4f1 100%);
  min-height: 100vh;
}

.access-shell {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 28px;
}

.access-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(24, 44, 42, 0.12);
  margin: 0 auto;
  max-width: 560px;
  padding: 34px;
  width: 100%;
}

.access-card h1 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08;
  margin: 8px 0 14px;
}

.access-copy {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.access-form {
  display: grid;
  gap: 16px;
}

.access-form label {
  display: grid;
  gap: 8px;
}

.access-form span {
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.access-form textarea {
  resize: vertical;
}

.access-status {
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 18px;
  min-height: 22px;
  padding: 0;
}

.access-status[data-type="success"] {
  background: rgba(46, 125, 92, 0.1);
  color: var(--success);
  padding: 12px;
}

.access-status[data-type="error"] {
  background: rgba(183, 64, 64, 0.1);
  color: var(--danger);
  padding: 12px;
}

@media (max-width: 640px) {
  .access-shell {
    padding: 18px;
  }

  .access-card {
    padding: 24px;
  }
}
