:root {
  color: #f7fbff;
  background: #03111d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: max(1.25rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right))
    max(1.25rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
}

.recovery-card {
  width: min(100%, 38rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid #21445d;
  border-radius: 1.75rem;
  background: #092238;
  box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 35%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #42d4e7;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1;
}

p {
  line-height: 1.55;
}

button {
  width: 100%;
  min-height: 3rem;
  margin-top: 1rem;
  border: 0;
  border-radius: 0.9rem;
  padding: 0.8rem 1rem;
  color: #04121d;
  background: #39cee0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

button:focus-visible {
  outline: 3px solid #f9d65c;
  outline-offset: 3px;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.status {
  min-height: 1.6em;
  margin-bottom: 0;
  color: #b9d7ea;
}

noscript {
  color: #ffb8b8;
}
