:root {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #18202f;
  background: #f3f5f9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(9, 22, 42, 0.78), rgba(9, 22, 42, 0.58)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.panel {
  width: min(560px, 100%);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d9e0ea;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(24, 32, 47, 0.16);
}

.backLink {
  color: #1f6feb;
  text-decoration: none;
  font-weight: 600;
}

.eyebrow {
  margin: 18px 0 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #f59e0b;
}

h1 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.05;
}

.lead {
  margin: 0 0 22px;
  color: #5d6675;
  line-height: 1.6;
}

.requestForm {
  display: grid;
  gap: 10px;
}

.requestForm label {
  font-weight: 600;
  color: #475467;
}

.requestForm input {
  height: 46px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font: inherit;
}

.requestForm input:focus {
  outline: 2px solid #bfdbfe;
  border-color: #1f6feb;
}

.requestForm button {
  margin-top: 4px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: #111827;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.requestForm button:disabled {
  opacity: 0.7;
  cursor: progress;
}

.status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #475467;
}

.status.success {
  color: #166534;
}

.status.error {
  color: #b42318;
}

.notes {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e5eaf2;
}

.notes div {
  display: grid;
  gap: 4px;
}

.notes span {
  color: #5d6675;
}
