:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f5fb;
  color: #20233a;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: radial-gradient(circle at top, #eef0ff 0, #f8f8fc 50%, #eef1f7 100%);
}

main {
  width: min(42rem, 100%);
  padding: clamp(2rem, 7vw, 4rem);
  border: 1px solid #dedff1;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1.5rem 4rem rgba(64, 68, 120, 0.12);
}

.label {
  margin: 0 0 1rem;
  color: #696bb0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

p {
  margin: 1.5rem 0 0;
  color: #62657c;
  font-size: 1.1rem;
  line-height: 1.65;
}

a {
  color: #5759a7;
}

