body {
  background-color: #f4f6f9;
  font-family: 'Roboto', Arial, sans-serif;
}

.login-container {
  max-width: 300px; /* Reducido el ancho */
  margin: 40px auto;
  background: #ffffff;
  padding: 20px; /* Reducido el padding */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 20px; /* Título más pequeño */
}

.form-control {
  height: 30px; /* Altura más pequeña de los inputs */
  font-size: 14px; /* Fuente más pequeña */
}

.btn-custom {
  background-color: #0056b3;
  color: white;
  border: none;
  height: 35px; /* Botón más pequeño */
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #003d80;
}

.input-group-text {
  background-color: #0056b3;
  color: white;
  border: none;
  font-size: 14px; /* Iconos más pequeños */
  height: 30px;
  display: flex;
  align-items: center; /* Centra verticalmente el texto */
}

#message {
  font-size: 12px; /* Mensajes compactos */
}

