:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  background: #0b1712;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background-color: rgba(6, 16, 12, .54);
  background-image: url("/images/north-shore-road-hero-no-logo.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
}

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

section {
  width: min(100%, 440px);
  padding: clamp(32px, 7vw, 56px);
  background: rgba(8, 18, 14, .9);
  border: 1px solid rgba(255, 255, 255, .22);
}

h1 {
  margin: 0 0 40px;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: .045em;
}

label {
  display: block;
  margin-bottom: 10px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
}

input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 0;
  color: #fff;
  background: rgba(0, 0, 0, .22);
  font: inherit;
}

button {
  width: 100%;
  min-height: 52px;
  margin-top: 16px;
  border: 1px solid #fff;
  border-radius: 0;
  color: #1d3557;
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

input:focus-visible,
button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.error {
  min-height: 24px;
  margin: 12px 0 0;
  color: #fff;
  font-size: .9375rem;
}

@media (forced-colors: active) {
  section,
  input,
  button {
    border: 1px solid CanvasText;
  }
}
