*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
  color: #1a1a1a;
  background: linear-gradient(160deg, #f7f3eb 0%, #e8eef2 100%);
  min-height: 100vh;
}

main {
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

h1 {
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0;
  color: #3d3d3d;
}

.login-form {
  margin-top: 2rem;
  display: grid;
  gap: 0.6rem;
}

.login-form label {
  font-size: 0.95rem;
  color: #2a2a2a;
}

.login-form input[type='email'] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #b7c2c8;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 1.05rem;
  color: #1a1a1a;
}

.login-form input[type='email']:focus {
  outline: 2px solid #1a3a4a;
  outline-offset: 1px;
}

.user-email {
  margin-top: 0.5rem;
  font-size: 1.15rem;
}

.send-email {
  display: block;
  width: 100%;
  margin-top: 2rem;
  padding: 1.1rem 1.5rem;
  border: 0;
  border-radius: 0.35rem;
  background: #1a3a4a;
  color: #f7f3eb;
  font: inherit;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.send-email:hover:not(:disabled) {
  background: #254d61;
}

.send-email:disabled {
  opacity: 0.65;
  cursor: wait;
}

.status {
  margin-top: 1rem;
  min-height: 1.5em;
}

.status--ok {
  color: #1f5c3a;
}

.status--error {
  color: #8a1f1f;
}

code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.9em;
}
