body {
  background: #14132b;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.form-container {
  background: #0f1a38;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  color: #fff;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 10px;
  background: #007aff;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.link {
  text-align: center;
  margin-top: 15px;
}

.link a {
  color: #00ffff;
  text-decoration: none;
}

.error,
.success {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

.error {
  color: red;
}

.success {
  color: #00ff7f;
}
