:root {
  color-scheme: light;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f3f5f7;
  color: #17212b;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(100%, 440px);
  padding: 36px;
  border: 1px solid #d9dfe5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgb(24 39 56 / 10%);
}

.product {
  margin: 0 0 12px;
  color: #486275;
  font-size: 14px;
  font-weight: 600;
}

h1 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.hint {
  margin: 14px 0 26px;
  color: #586875;
  line-height: 1.5;
}

.actions {
  display: grid;
  gap: 12px;
}

.button {
  display: block;
  padding: 12px 16px;
  border: 1px solid #1f5f87;
  border-radius: 7px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: #1f5f87;
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: #1f5f87;
}

.button:hover,
.button:focus-visible {
  filter: brightness(0.94);
}

.request-link {
  display: block;
  margin-top: 24px;
  color: #1f5f87;
  text-align: center;
  text-underline-offset: 3px;
}

.request-card { width: min(100%, 520px); }
.request-form { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; font-size: 1rem; }
.field input, .field textarea {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #a6b3bd;
  border-radius: 6px;
  background: #fff;
  color: #17212b;
  font: inherit;
}
.field textarea { min-height: 100px; resize: vertical; }
.button { font: inherit; font-weight: 600; cursor: pointer; }
:focus-visible { outline: 3px solid #1f5f87; outline-offset: 3px; }
.privacy-note { margin: 0; color: #586875; font-size: 0.875rem; line-height: 1.5; }
.notice { margin: 18px 0; line-height: 1.5; overflow-wrap: anywhere; }
.notice-error { color: #a32121; }
.trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
@media (max-width: 480px) {
  body { padding: 16px; }
  .login-card { padding: 24px; }
}
