/* login.css */
body, html {
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('../img/fondo.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

.main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 120px); /* ajusta al header */
}

.login-box {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px black;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.login-box h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #ffd700;
}

.login-box input[type="text"],
.login-box input[type="password"] {
  width: 90%;
  padding: 10px;
  margin: 10px auto;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.login-box button {
  padding: 10px 30px;
  background-color: #ffd700;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.login-box button:hover {
  background-color: #e0c200;
}

.login-error {
  color: #ff4444;
  margin-bottom: 15px;
}
