:root {
  --primary: #212D45;
  --accent: #FFC03D;
  --text: #4B4F58;
  --bg: #ffffff;
  --card: #ffffff;
  --border: #e7eaf0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(33, 45, 69, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.box {
  width: 100%;
  max-width: 520px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: -0.02em;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 15px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-size: 15px;
}

button {
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 15px;
}

input,
select,
textarea {
  background: #ffffff;
  color: var(--text);
  border: 1px solid #d8dee8;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 192, 61, 0.18);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button {
  border: none;
  background: var(--accent);
  color: var(--primary);
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

button:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.success {
  margin-top: 12px;
  display: none;
  color: #1f7a3f;
  font-weight: 600;
}

.error-box {
  margin-top: 12px;
  display: none;
  color: #c62828;
  font-weight: 600;
}

.field-error {
  border: 2px solid #d32f2f !important;
  outline: none;
}

.helper {
  font-size: 13px;
  color: #6b7280;
  text-align: left;
  margin-top: -6px;
  margin-bottom: 10px;
}


.front-footer {
  width: 100%;
  max-width: 520px;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4px;

  text-align: center;
  font-size: 13px;
  color: var(--front-muted-text-color, #475569);
  line-height: 1.45;
}

.front-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.front-legal-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.front-legal-links a:hover {
  text-decoration: underline;
}

.front-footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.front-footer a:hover {
  text-decoration: underline;
}

.booking-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
