.fcta-center {
  --fcta-green: #305c42;
  --fcta-green-dark: #21452f;
  --fcta-border: #dce6df;
  --fcta-soft: #f5faf7;
  color: #26322a;
  margin: 32px 0 56px;
}

.fcta-center .section-title p {
  max-width: 840px;
  margin: 12px auto 0;
  color: #5a675e;
}

.fcta-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0;
}

.fcta-tab,
.fcta-primary,
.fcta-secondary {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color .2s ease, transform .2s ease;
}

.fcta-tab {
  padding: 10px 22px;
  color: var(--fcta-green);
  background: #edf4ef;
}

.fcta-tab.is-active,
.fcta-primary {
  color: #fff;
  background: var(--fcta-green);
}

.fcta-tab:hover,
.fcta-primary:hover {
  background: var(--fcta-green-dark);
}

.fcta-primary,
.fcta-secondary {
  padding: 11px 20px;
}

.fcta-secondary {
  color: var(--fcta-green);
  background: #e9f1eb;
}

.fcta-primary:disabled,
.fcta-secondary:disabled {
  cursor: wait;
  opacity: .65;
}

.fcta-panel,
.fcta-intro-card,
.fcta-query-card,
.fcta-result {
  border: 1px solid var(--fcta-border);
  border-radius: 10px;
  background: #fff;
}

.fcta-panel {
  padding: 24px;
}

.fcta-intro-card,
.fcta-query-card,
.fcta-result {
  padding: 20px;
  margin-bottom: 22px;
}

.fcta-intro-card {
  background: var(--fcta-soft);
}

.fcta-rule-list {
  columns: 2;
  column-gap: 42px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.fcta-rule-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.fcta-form fieldset {
  border: 0;
  border-top: 1px solid var(--fcta-border);
  margin: 28px 0 0;
  padding: 24px 0 0;
}

.fcta-form legend {
  color: var(--fcta-green);
  font-size: 1.15rem;
  font-weight: 700;
  padding-right: 12px;
}

.fcta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fcta-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 16px;
}

.fcta-form input[type="text"],
.fcta-form input[type="email"],
.fcta-form input[type="password"],
.fcta-form input[type="number"],
.fcta-form input[type="date"],
.fcta-form select,
.fcta-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 10px 12px;
  border: 1px solid #bccbc0;
  border-radius: 5px;
  background: #fff;
  color: #1f2922;
}

.fcta-form input:focus,
.fcta-form select:focus,
.fcta-form textarea:focus {
  border-color: var(--fcta-green);
  box-shadow: 0 0 0 3px rgba(48, 92, 66, .12);
  outline: none;
}

.fcta-form small,
.fcta-help {
  display: block;
  margin-top: 6px;
  color: #67736b;
  font-weight: 400;
}

.fcta-check {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  font-weight: 500 !important;
}

.fcta-check input {
  flex: 0 0 auto;
  margin-top: 5px;
}

.fcta-member-counter,
.fcta-privacy {
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--fcta-soft);
}

.fcta-privacy {
  margin: 24px 0;
  color: #536159;
}

.fcta-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.fcta-notice {
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 6px;
}

.fcta-notice.is-error {
  color: #802626;
  background: #fff0f0;
  border: 1px solid #efc3c3;
}

.fcta-notice.is-success {
  color: #1d5d35;
  background: #edf9f1;
  border: 1px solid #bfe0ca;
}

.fcta-notice.is-info {
  color: #37526b;
  background: #eff6fb;
  border: 1px solid #c7dce9;
}

.fcta-result {
  margin-top: 24px;
}

.fcta-credentials {
  display: grid;
  gap: 8px;
  max-width: 720px;
  padding: 18px;
  border: 1px dashed var(--fcta-green);
  border-radius: 7px;
  background: var(--fcta-soft);
}

.fcta-credentials code {
  overflow-wrap: anywhere;
  padding: 8px 10px;
  color: #182d20;
  background: #e5efe8;
}

.fcta-warning {
  margin-top: 14px;
  color: #875e15;
}

.fcta-details {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  border-top: 1px solid var(--fcta-border);
  margin: 18px 0;
}

.fcta-details dt,
.fcta-details dd {
  margin: 0;
  padding: 10px 8px;
  border-bottom: 1px solid var(--fcta-border);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.fcta-details dt {
  font-weight: 700;
  background: var(--fcta-soft);
}

.fcta-public-message {
  padding: 14px;
  white-space: pre-wrap;
  border-left: 4px solid var(--fcta-green);
  background: var(--fcta-soft);
}

.fcta-timeline {
  list-style: none;
  padding: 0 0 0 20px;
  border-left: 2px solid var(--fcta-border);
}

.fcta-timeline li {
  position: relative;
  padding: 0 0 18px 18px;
}

.fcta-timeline li::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fcta-green);
}

.fcta-timeline time {
  display: block;
  color: #738078;
  font-size: .88rem;
}

.fcta-timeline p {
  white-space: pre-wrap;
}

@media (max-width: 767px) {
  .fcta-panel {
    padding: 16px;
  }

  .fcta-grid,
  .fcta-details {
    grid-template-columns: 1fr;
  }

  .fcta-rule-list {
    columns: 1;
  }

  .fcta-tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .fcta-details dd {
    padding-top: 4px;
  }
}
