body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.reset-form h1 {
  color: #ffd700;
  margin-bottom: 10px;
  text-align: center;
}

.reset-form p {
  font-size: 14px;
  color: #ccc;
  text-align: center;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #ffd700;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 5px;
  background-color: #2a2a2a;
  color: #fff;
}

input:focus {
  outline: 2px solid #ffd700;
}

.contact-preference {
  margin-top: 20px;
}

.contact-preference p {
  margin-bottom: 10px;
  color: #ccc;
}

.contact-preference label {
  display: block;
  margin-bottom: 5px;
  font-weight: normal;
  color: #f0f0f0;
}

.btn-recuperar {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #ffd700;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  color: #121212;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-recuperar:hover {
  background-color: #e6c200;
}
