.ft-preapp {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
}

.ft-preapp__header { margin-bottom: 16px; }
.ft-preapp__title { margin: 0 0 10px 0; }

.ft-preapp__progressbar {
  height: 10px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}
.ft-preapp__progressbar span {
  display: block;
  height: 100%;
  width: 0%;
  background: #333;
  transition: width .2s ease;
}
.ft-preapp__progressmeta {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}

.ft-step { display: none; }
.ft-step.is-active { display: block; }

.ft-step h3 { margin-top: 0; }

.ft-preapp label { display: block; margin: 12px 0; font-weight: 600; }
.ft-preapp label input,
.ft-preapp label select,
.ft-preapp label textarea {
  margin-top: 6px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-weight: 400;
}

.ft-req { color: #c00; }

.ft-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.ft-btn {
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: #111;
  color: #fff;
}
.ft-btn:hover { opacity: 0.92; }

.ft-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
}
.ft-check input { width: auto; margin-top: 4px; }

.ft-fieldset {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  margin-top: 12px;
}
.ft-fieldset legend {
  padding: 0 6px;
  font-weight: 700;
}

.ft-radio {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 10px 0 !important;
  font-weight: 400 !important;
}
.ft-radio input { width: auto !important; margin: 0; }

.ft-grid3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
}

.ft-status { margin-top: 12px; font-size: 14px; }
.ft-status.is-error { color: #b00020; }
.ft-status.is-ok { color: #0a7a2f; }

.ft-success {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid #e7e7e7;
  background: #fafafa;
  border-radius: 12px;
}
