body.login-page {
  background: linear-gradient(to right, #2a6dd2, #1e3c72);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9); /* Fondo semitransparente */
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  max-width: 400px;
  margin: 5vh auto;
}


.logo {
  width: 250px;
  margin-bottom: 10px;
}

h2 {
  color: #2a6dd2;
  margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 15px;
}

button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #2a6dd2;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  margin-top: 15px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.mensaje-error {
  background-color: #fff3f3;
  border-left: 5px solid #d91e18;
  color: #a01414;
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mensaje-error i {
  color: #d91e18;
  font-size: 16px;
}


button[type="submit"]:hover {
  background-color: #1e58b5;
}

.recuperar {
  margin-top: 15px;
}

.recuperar a {
  color: #2a6dd2;
  text-decoration: none;
  font-size: 14px;
}

.recuperar a:hover {
  text-decoration: underline;
}

.error {
  background: #ffe0e0;
  color: #a70000;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.login-page {
  background-image: url('../assets/img/fondo_login.svg'); /* Cambiá la ruta si hace falta */
  background-repeat: no-repeat;
  background-size: cover;      /* O 'contain' si querés que se vea entera */
  background-position: center center;
  background-attachment: fixed;
  height: 100vh;
}
