html, body {
  height: 100%;
  margin: 0;
  background-color: #f3f4f6;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

#app {
  min-height: 100vh;
}

.bg-logo {
  background-color: #f3f4f6;
}

/* modal backdrop */
.modal-backdrop {
  background-color: rgba(15, 23, 42, 0.55);
}

.field-disabled {
  background-color: #f3f4f6;
  color: #4b5563;
}

/* mock do widget Cloudflare Turnstile (login), só para réplica visual, sem chamada externa */
.turnstile-mock {
  width: 300px;
  height: 65px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: #fafafa;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
}
.turnstile-mock.is-checked {
  cursor: default;
}
.turnstile-mock-checkbox {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #b7b7b7;
  border-radius: 4px;
  background: #fff;
  transition: border-color .15s, background-color .15s;
}
.turnstile-mock.is-checked .turnstile-mock-checkbox {
  border-color: #22c55e;
  background: #22c55e;
}
.turnstile-mock-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #d3d3d3;
  border-top-color: #6b7280;
  border-radius: 50%;
  animation: turnstileSpin .6s linear infinite;
}
@keyframes turnstileSpin {
  to { transform: rotate(360deg); }
}
.turnstile-mock-check {
  width: 16px;
  height: 16px;
}
.turnstile-mock-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.turnstile-mock-label {
  font-size: 13px;
  color: #333;
  line-height: 1.2;
}
.turnstile-mock-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #8b8b8b;
  margin-top: 3px;
}
.turnstile-mock-links {
  margin-left: 6px;
}
