body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.reset-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}
.reset-container h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #333;
}
.reset-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #555;
}
.reset-container input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  box-sizing: border-box;
}
.reset-container input[type="email"]:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}
.reset-container button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.reset-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.message {
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 16px;
  display: none;
}
.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}
.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}
.back-link {
  text-align: center;
  margin-top: 16px;
}
.back-link a {
  color: #667eea;
  text-decoration: none;
}
.back-link a:hover {
  text-decoration: underline;
}
.logo-container {
  text-align: center;
  margin-bottom: 1.5rem;
}
.logo-container img {
  height: 80px;
  filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
}
