body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0F172A, #1E3A8A);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}

.card-recover {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  animation: fadeIn 1s ease;
}

.card-recover h1 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  color: #333;
}

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

.links a {
  margin: 0 10px;
  transition: 0.3s;
}

.links a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
