/* archivo: olvide_contrasena.css */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f2f4f7;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.reset-container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.reset-container h2 {
  margin-bottom: 1.5rem;
  color: #333;
}

.form-group {
  text-align: left;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 90%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem;
  border: none;
  background-color: #7c3aed;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #5b21b6;
}

.back-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}
