.login-section {
  background-image: url('../img/imagencarruser2.jpg'); /* Cambia la ruta si es necesario */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contenedor general del login */
.login-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 30px 40px;
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  
}

/* Título */
.login-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-weight: 700;
}

/* Inputs */
.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0 20px 0;
  border: 1.5px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.login-container input[type="text"]:focus,
.login-container input[type="password"]:focus {
  border-color: #007BFF;
  outline: none;
}

/* Botón */
.login-container button {
  width: 100%;
  background-color: #007BFF;
  color: white;
  padding: 14px 0;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.login-container button:hover {
  background-color: #0056b3;
}

/* Mensaje de error */
.error {
  color: #ff0000;
  font-weight: 600;
  margin-top: -10px;
  margin-bottom: 15px;
  text-align: center;
}
