:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
}

.access-page {
  min-height: 100vh;
  color: #f8faf8;
  background:
    radial-gradient(circle at 15% 10%, rgba(85, 142, 108, .2), transparent 34%),
    #0b251b;
}

.access-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.access-panel {
  width: min(100%, 390px);
  display: grid;
  justify-items: center;
}

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

.access-form label {
  display: grid;
  gap: 7px;
  color: #b9c8c1;
  font-size: 14px;
  font-weight: 650;
}

.access-form input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  color: #10241c;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.access-form input:focus {
  border-color: #9cff42;
  box-shadow: 0 0 0 4px rgba(156, 255, 66, .15);
}

.access-form button {
  height: 54px;
  margin-top: 2px;
  color: #0c241a;
  background: #9cff42;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.access-form button:hover { background: #adff61; }
.access-form button:disabled { cursor: wait; opacity: .75; }

.form-message {
  min-height: 20px;
  margin: -2px 0 -6px;
  color: #ffb3a7;
  font-size: 14px;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
