/* Body */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('/public/assets/img/ECLZQ_noche.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;

  margin: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  padding-top: 80px;
  text-align: center;
  color: #e0e0e0;
}

/* Botones de grupo */
.button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

/* Card */
.card {
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background-color: #2d2d2d;
  color: #e0e0e0;
}

/* Card header */
.card-header {
  background-color: #007acc !important;
  color: #ffffff;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
}

/* Botón Entrar centrado */
.btn-enter {
  background-color: #007acc;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px 30px;
  transition: 0.3s;
}

.btn-enter:hover {
  background-color: #005a99;
  color: #ffffff;
}

/* Enlaces debajo del botón */
.login-links {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  width: 100%;
}

.login-links a {
  color: #007acc;
  text-decoration: none;
}

.login-links a:hover {
  color: #005a99;
}

/* Responsivo */
@media (max-width: 768px) {
  .button-group {
    flex-direction: column;
  }
}
