body {
  font-family:
    'Urbanist',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

.container {
  text-align: center;
  max-width: 450px;
  width: 100%;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

img {
  max-width: 100px;
}

a {
  color: #00acd8;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: #1eccf8;
  text-decoration: none;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-block-start: 0;
  margin-block-end: 10px;
  color: #1b428a;
}

h2 {
  font-family:
    'Barlow',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-block-start: 20px;
  margin-block-end: 0;
}

p {
  color: #666;
  margin-block-start: 10px;
  margin-block-end: 30px;
  line-height: 1.5;
}

.small {
  font-size: 0.875rem;
  color: #888;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
button {
  font-family:
    'Barlow',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
}

input[type='email'] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

input[type='email']:focus {
  border-color: #00acd8;
  outline: none;
}

button {
  background-color: #00acd8;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background-color: #1eccf8;
}

.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #e6f9fd;
  border-radius: 50%;
  margin-block-start: 20px;
}

.checkmark svg {
  width: 32px;
  height: 32px;
  stroke: #00acd8;
}

.hidden {
  display: none;
}
