/* ==========================================================================
   GATEKEEPER AUTH MODAL
   ========================================================================== */
.omed-gatekeeper-hidden {
  display: none !important;
}

#omed-gatekeeper-modal {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.omed-gatekeeper-box {
  background: #ffffff;
  width: 100%;
  max-width: 440px;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.omed-gatekeeper-box h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #0f172a;
}

.omed-gatekeeper-box p {
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

#omed-gatekeeper-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#omed-gatekeeper-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

#omed-gatekeeper-form input:focus {
  outline: none;
  border-color: #0284c7;
}

.omed-gk-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

#omed-gk-submit {
  width: 100%;
  padding: 12px;
  background: #0284c7;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

#omed-gk-submit:hover {
  background: #0369a1;
}

.omed-gk-secondary-row {
  display: flex;
  gap: 10px;
}

.omed-btn-secondary {
  flex: 1;
  padding: 10px;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.omed-btn-secondary:hover {
  background: #e2e8f0;
}