/* Estilo para el login */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #2c3e50, #34495e); /* Fondo degradado */
  font-family: Arial, sans-serif;
}

.login-form {
  width: 60%;
}

.login-container {
  background: rgba(255, 255, 255, 0.8); /* Le damos un fondo más opaco */
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px; /* Aumentamos el ancho del contenedor */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #34495e;
}

.login-error {
  color: #e74c3c;
  margin-bottom: 15px;
  font-size: 14px;
}

.login-input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.login-button {
  width: 100%;
  padding: 12px;
  background-color: #34495e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-button:hover {
  background-color: #2c3e50;
}

.login-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.remember-me {
  font-size: 14px;
}

.login-logo {
  margin-bottom: 20px;
}

.login-logo img {
  width: 100%; /* Hacemos el logo más grande */
  height: auto;
}

.login-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(to bottom, #2c3e50, #34495e); /* Fondo degradado */
}
