/* ===== TEMA GLOBAL LION FITNESS ===== */
body {
  background-color: #000 !important;   /* Fondo negro absoluto */
  color: #fff;                         /* Texto blanco por defecto */
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
}

/* ===== KIOSK LOGIN ===== */
.kiosk-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  /* Animación inicial */
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpFadeIn 0.8s ease-out forwards;
}

/* Animación: deslizar hacia arriba con difuminado */
@keyframes slideUpFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo del león */
.logo-login {
  max-width: 300px;
  margin-bottom: 3rem;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

/* Tarjeta que contiene el formulario */
.login-card {
  background: transparent;             /* Sin fondo, solo los inputs destacan */
  width: 100%;
  max-width: 400px;
}

/* Campos de texto y contraseña */
.form-control-custom {
  background-color: rgba(255, 255, 255, 0.5) !important;  /* 50% transparencia */
  border: 1px solid rgba(255,255,255,0.3);
  color: #000 !important;              /* Texto negro */
  font-size: 1.2rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: background 0.3s, border 0.3s;
}

.form-control-custom::placeholder {
  color: #000 !important;
  opacity: 0.7;
}

.form-control-custom:focus {
  background-color: rgba(255, 255, 255, 0.7) !important;
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
}

/* Botón de ingreso */
.btn-lion {
  background-color: #fff;
  color: #000;
  border: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-lion:hover {
  background-color: #e0e0e0;
  transform: scale(1.02);
}

/* Mensajes de error */
.alert-danger {
  background-color: rgba(220, 53, 69, 0.2);
  border: 1px solid #dc3545;
  color: #fff;
}

/* ===== TABLA DE MIEMBROS ===== */
.table-dark {
  --bs-table-bg: transparent;
  --bs-table-color: #fff;
}

.table-hover > tbody > tr:hover {
  background-color: rgba(255, 255, 255, 0.075) !important;
}

.badge {
  font-size: 0.85rem;
  padding: 0.4em 0.8em;
}

/* ===== BUSCADOR ===== */
.form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.15);
}

/* ===== CARDS DEL DASHBOARD ===== */
.card {
  border-radius: 12px;
}

.text-bg-light {
  color: #000 !important;
}


/* ===== ETIQUETAS ===== */
.form-label-custom {
  display: block;              /* Fuerza que ocupe toda una línea */
  width: 100%;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ===== CAMPOS DE FORMULARIO ===== */
.form-control-custom {
  display: block;              /* Fuerza que ocupe toda una línea */
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #000 !important;
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: background 0.3s, border 0.3s, box-shadow 0.3s;
}

.form-control-custom::placeholder {
  color: #000 !important;
  opacity: 0.6;
}

.form-control-custom:focus {
  background-color: rgba(255, 255, 255, 0.7) !important;
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  outline: none;
}

/* ===== BOTÓN PRINCIPAL ===== */
.btn-lion {
  background-color: #fff;
  color: #000;
  border: none;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-lion:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* ===== MODAL DE STAFF ===== */
.modal-content {
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.modal-header .btn-close-white {
  filter: invert(1);
}

/* Botón sutil de staff */
.btn-link {
  text-decoration: none;
  font-size: 0.85rem;
}

.btn-link:hover {
  color: #fff !important;
  opacity: 1 !important;
}