.auth-card {
  max-width: 420px;
  margin: 80px auto;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.auth-card input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.auth-card button {
  width: 100%;
  padding: 14px;
  background: #B4E21A;
  border-radius: 30px;
  font-weight: 600;
}
.kyc-label {
  display: block;
  margin: 14px 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.loader-box {
  text-align: center;
  padding: 30px 10px;
  color: #555;
  font-size: 14px;
}

.spinner {
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  border: 4px solid #ddd;
  border-top: 4px solid #B4E21A;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}
.bbps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.bbps-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.bbps-item:hover {
  transform: scale(1.05);
}

.bbps-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}

.bbps-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

/* Loader */
.loader-box {
  text-align: center;
  padding: 30px;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 4px solid #ddd;
  border-top: 4px solid #202061;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* BBPS Modal */
.bbps-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.bbps-modal-content {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  width: 90%;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.bbps-modal-content h3 {
  margin-bottom: 10px;
  color: #202061;
}

.bbps-modal-content p {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

.bbps-modal-content button {
  background: #202061;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
/* Login Required Modal */
/* ===== LOGIN REQUIRED MODAL (FINAL & CORRECT) ===== */
.login-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;

  display: none;
  justify-content: center;
  align-items: center;
}

.login-modal.show {
  display: flex;
}

.login-modal-content {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  width: 90%;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}


.login-modal-content h3 {
  color: #202061;
  margin-bottom: 8px;
}

.login-modal-content p {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

.login-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
/* ===== FIX CLICK BLOCKING ISSUE ===== */


button,
.service-btn {
  pointer-events: auto;
  cursor: pointer;
}
