.bg-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Estilos tipográficos para toda la aplicación */
body {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.02em;
}

/* Estilos para el botón de Microsoft */
.microsoft-btn {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #2563eb; /* Azul intermedio */
  border-radius: 6px;
  padding: 0;
  color: #2563eb; /* Azul intermedio */
  font-weight: 600;
  font-size: 15px;
  width: 280px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.microsoft-btn:hover {
  background-color: #f0f7ff;
  border-color: #1d4ed8; /* Un poco más oscuro al hover */
  color: #1d4ed8;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 12px 15px;
}

.btn-text {
  flex-grow: 1;
  text-align: center;
  padding: 12px 10px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.01em;
}

/* Efecto de pulsación */
.microsoft-btn:active {
  transform: scale(0.98);
  box-shadow: 0 1px 3px rgba(14, 37, 87, 0.2);
}

/* Variables de color institucional */
:root {
  --color-primary: #2563eb; /* Azul institucional intermedio - más vibrante pero profesional */
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #3b82f6;
}
