/* styles.css */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  width: 100%;
  max-width: 1920px;
  padding: 2rem;
  background: #87b0fd;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

a {
  text-decoration: none;
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

form input {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

form button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.9rem;
  background-color: #0073e6;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #005bb5;
}

#qrcode {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.mensaje {
  font-weight: bold;
  font-size: 1.2rem;
  color: green;
  text-align: center;
  margin-top: 1rem;
}

.bg-dark{
	background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%);
}

.social-icons-container .social-icon-link {
    font-size: 2.5rem; /* Ajusta el tamaño de los iconos */
    color: #0d6efd; /* Color por defecto de Bootstrap primary blue */
    transition: color 0.3s ease; /* Transición suave al pasar el mouse */
	text-decoration: none;
}

.social-icons-container .social-icon-link:hover {
    color: #0a58ca; /* Un color un poco más oscuro al pasar el mouse */
}