body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100%;
}

body {
  background: linear-gradient(135deg, #e6f0ff, #1a75ff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.card {
  background: rgba(255, 255, 255, 0.45); /* Más clara */
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.20);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2.5rem 2rem;
  max-width: 400px;
  margin: 2rem auto;
  color: #222;
  text-align: center;
  transition: box-shadow 0.3s;
}

.card h1 {
  color: #003d99;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  font-weight: 600;
}

.card p, .card label, .card input, .card button, .card footer p {
  color: #222;
  text-shadow: none;
  font-weight: 400; /* Sin negrita */
}

.logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

h1 {
  color: #003d99;
  margin-bottom: 1rem;
}

p {
  color: #002966;
  margin-bottom: 1.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

input,
button {
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
}

input {
  background-color: rgba(255, 255, 255, 0.8);
  color: #111 !important;
  text-align: center;
  text-shadow: none;
}

button {
  background-color: #0052cc;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #003d99;
}

footer {
  color: #001433;
  font-size: 0.8rem;
  margin-top: 1rem;
}