.form-semit-validation-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f4f8ff 0%, #eefaf3 100%);
}
.form-semit-validation-card {
  max-width: 620px;
  width: 100%;
  background: #fff;
  border: 2px solid " . esc_attr($theme[" border "]) . ";
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(35, 54, 94, 0.12);
  padding: 32px 28px;
  text-align: center;
  font-family: Arial, sans-serif;
}
.form-semit-validation-icon {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 18px;
}
.form-semit-validation-title {
  margin: 0 0 12px;
  font-size: 2rem;
  color: #1d2433;
  text-align: center;
}
.form-semit-validation-message {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #344357;
}
.form-semit-validation-meta {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 10px;
  background: " . esc_attr($theme[" bg "]) . ";
  border: 1px solid " . esc_attr($theme[" border "]) . ";
  color: #27364d;
  font-size: 0.95rem;
}
.form-semit-validation-token {
  margin-top: 18px;
  font-size: 0.8rem;
  color: #64748b;
  word-break: break-all;
}

.form-semit-public {
  max-width: 760px;
  margin: 40px auto;
  padding: 35px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.form-semit-header {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ececec;
}

.form-semit-header h2 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 700;
  color: #1d2327;
}

.form-semit-header p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 28px;
}

.form-semit-section {
  margin: 32px 0 20px;
}

.form-semit-section h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1d2327;
}

.form-semit-section hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 0;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #1d2327;
}

.required {
  color: #d63638;
}

.form-semit-public input:not([type="checkbox"]):not([type="radio"]),
.form-semit-public textarea,
.form-semit-public select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c3c4c7;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.form-semit-public textarea {
  min-height: 150px;
  resize: vertical;
}

.form-semit-public input:focus,
.form-semit-public textarea:focus,
.form-semit-public select:focus {
  outline: none;
  border-color: #2271b1;
  box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.15);
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.form-option {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 400 !important;
  background: #fff;
}

.form-option:hover {
  background: #f6f7f7;
  border-color: #2271b1;
}

.form-option input {
  width: auto !important;
  margin: 0;
  flex-shrink: 0;
}

.form-option span {
  flex: 1;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #2271b1;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.form-submit:hover {
  background: #135e96;
}

.form-submit:active {
  transform: translateY(1px);
}

.form-semit-public__header-image {
  width: 100%;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 10px;
}

.form-semit-public__header-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .form-semit-validation-card {
    padding: 24px 18px;
  }
  .form-semit-validation-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .form-semit-public {
    margin: 20px;
    padding: 20px;
  }

  .form-semit-header h2 {
    font-size: 24px;
  }
}
