body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, white, lightgray);
  color: #fff;
  font-family: Arial, sans-serif;
}

.form-container {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  color: #333;
}

.form-header {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #e06666;
}

.btn-primary {
  background: #e06666;
  border: none;
}

.btn-primary:hover {
  background: #ff0000;
}

.btn-success {
  background: #e06666;
  border: none;
}

.btn-success:hover {
  background: #ff0000;
}

.toggle-link {
  color: #e06666;
  text-decoration: none;
}

.toggle-link:hover {
  text-decoration: none;
}

.form-container p {
  font-size: 0.9rem;
}