body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.6;
  color: #333;
}
.logo {
  max-width: 200px;
  margin-bottom: 2rem;
}
.hero {
  text-align: center;
  margin-bottom: 3rem;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  text-align: left;
}
.benefit {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}
.form-container {
  max-width: 400px;
  margin: 0 auto;
}
input[type='email'] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}
button {
  width: 100%;
  padding: 0.75rem;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
button:hover {
  background: #1d4ed8;
}
.success-message {
  color: #28a745;
  text-align: center;
  display: none;
}
.login-container {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100%;
  text-align: right;
}
.login-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.login-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
} 