/* Base Styles */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #f5f5f5;
}

/* reCAPTCHA Badge - ensure visibility */
.grecaptcha-badge {
  visibility: visible !important;
  z-index: 9999;
}

/* Honeypot - hidden from real users, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  tab-index: -1;
}

/* App Layout */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex-grow: 1;
  padding: 3rem 1rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-lg {
  max-width: 1024px;
}

.container-md {
  max-width: 768px;
}

.container-sm {
  max-width: 480px;
}

/* Header */
.header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 0.75rem 0;
}

.header .container {
  display: flex;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.header-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-right: 0.75rem;
}

.header-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Footer */
.footer {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: #666;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
}

.footer-links a:hover {
  color: #1976d2;
  text-decoration: underline;
}

/* Card */
.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

/* Typography */
.text-heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.text-muted {
  color: #666;
}

.text-sm {
  font-size: 0.875rem;
}

.text-center {
  text-align: center;
}

.text-error {
  color: #d32f2f;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #1976d2;
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background-color: #1565c0;
}

.btn-secondary {
  background-color: #fff;
  color: #1976d2;
  border: 2px solid #1976d2;
}

.btn-secondary:hover:not(:disabled) {
  background-color: #e3f2fd;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .btn-group {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-text,
.btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Forms */
.form-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-header {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    flex-direction: row;
  }

  .form-col {
    flex: 1;
  }
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1a1a1a;
}

.required {
  color: #d32f2f;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  background-color: white;
  min-height: 48px;
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  color: #6c757d;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  cursor: pointer;
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.3rem;
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #dc3545;
  margin-top: 0.3rem;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #667eea;
}

.checkbox-text {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.5;
}

/* File Upload */
.file-upload {
  position: relative;
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  background-color: #fafafa;
  transition: border-color 0.2s, background-color 0.2s;
}

.file-upload:hover,
.file-upload.dragover {
  border-color: #1976d2;
  background-color: rgba(25, 118, 210, 0.05);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  pointer-events: none;
}

.file-icon {
  font-size: 1.5rem;
}

.file-list {
  margin-top: 0.5rem;
}

.file-list-item,
.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  background-color: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.file-item .file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-item .file-size {
  color: #666;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-size: 0.75rem;
}

.file-remove,
.btn-remove-file {
  background: none;
  border: none;
  color: #d32f2f;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  border-radius: 4px;
}

.btn-remove-file:hover {
  background-color: #ffcdd2;
}

.uploaded-files-list {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: #e3f2fd;
  border-radius: 8px;
  border: 1px solid #90caf9;
}

.uploaded-files-list .file-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}

/* Alert */
.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Success Page */
.success-icon {
  width: 64px;
  height: 64px;
  background-color: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  color: #4caf50;
}

.reference-box {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.reference-label {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.reference-number {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: monospace;
  color: #1a1a1a;
}

/* Status Page */
.status-container {
  text-align: center;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 24px;
  font-weight: 600;
}

.status-indicator.status-pending {
  background-color: #fff3e0;
  color: #e65100;
}

.status-indicator.status-in-review {
  background-color: #e3f2fd;
  color: #1565c0;
}

.status-indicator.status-resolved {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-indicator.status-closed {
  background-color: #f5f5f5;
  color: #616161;
}

.status-icon {
  font-size: 1.25rem;
}

.status-text {
  text-transform: capitalize;
}

/* Status Timeline */
.status-timeline {
  position: relative;
  padding-left: 2rem;
}

.status-timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e0e0e0;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -1.5rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0e0e0;
  border: 2px solid #fff;
}

.timeline-item.completed .timeline-marker {
  background-color: #4caf50;
}

.timeline-content strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* Form List (landing page) */
.form-list {
  margin-top: 2rem;
}

.form-list-item {
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: left;
}

.form-list-item h3 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 640px) {
  .main-content {
    padding: 1.5rem 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .text-heading {
    font-size: 1.5rem;
  }
}

/* Loading Overlay and Spinner */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top-color: #0066cc;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-text {
  margin-top: 1rem;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Button loading state */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* Submission Details Grid */
.submission-details {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-item.detail-full {
  grid-column: 1 / -1;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 0.95rem;
  color: #1a1a1a;
}

.detail-value.detail-text {
  background-color: #fff;
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  white-space: pre-wrap;
}

/* Attachments Section */
.attachments-section {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem;
}

.attachment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.attachment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.attachment-icon {
  font-size: 1.25rem;
}

.attachment-name {
  flex: 1;
  font-weight: 500;
  word-break: break-word;
}

.attachment-size {
  font-size: 0.8rem;
  color: #666;
}

.attachment-date {
  font-size: 0.8rem;
  color: #999;
}

/* Upload Section */
.upload-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 1rem;
}

.file-input-wrapper {
  position: relative;
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: #fff;
  border: 2px dashed #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.file-label:hover {
  border-color: #0066cc;
  background-color: #f0f7ff;
}

.file-label-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.file-label-text {
  font-size: 0.9rem;
  color: #666;
}

.file-list {
  margin-top: 0.5rem;
}

.file-list-item {
  font-size: 0.85rem;
  padding: 0.25rem 0.5rem;
  background-color: #e8f4ff;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  color: #0066cc;
}

/* Status Timeline Improvements */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e0e0e0;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -1.75rem;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
}

.timeline-item.completed .timeline-marker {
  background-color: #28a745;
  border-color: #28a745;
}

.timeline-content strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* Text Subheading */
.text-subheading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

/* Small Button */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ===========================================
   SHARED FORM STYLES
   =========================================== */

/* Form Controls - Enhanced */
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  background-color: white;
  min-height: 48px;
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  color: #6c757d;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  cursor: pointer;
}

/* Form Labels - Enhanced */
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.4rem;
}

.form-label .required {
  color: #dc3545;
}

/* Form Hints */
.form-hint {
  display: block;
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.3rem;
}

/* Form Errors */
.form-error {
  display: block;
  font-size: 0.75rem;
  color: #dc3545;
  margin-top: 0.3rem;
}

/* Form Row Grid */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Alerts */
.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Checkbox Label */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #667eea;
}

.checkbox-text {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.5;
}

/* Submit Button - Gradient Style */
.btn-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Info Badge */
.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #e8f4fd;
  color: #0066cc;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
}

/* ===========================================
   CHOICES.JS CUSTOM STYLING
   =========================================== */

.choices {
  margin-bottom: 0;
}

.choices__inner {
  min-height: 48px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background-color: white;
}

.choices__list--single {
  padding: 4px 16px 4px 4px;
}

.choices__list--dropdown {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f0f3ff;
  color: #212529;
}

.choices__list--dropdown .choices__item--selectable {
  color: #212529;
}

/* Fix for highlighted text in search input */
.choices__input::selection {
  background-color: #667eea;
  color: white;
}

/* Ensure dropdown items are readable */
.choices__list--dropdown .choices__item {
  color: #212529;
  padding: 10px 12px;
}

.choices__list--dropdown .choices__item--selectable:hover {
  background-color: #e8ecff;
  color: #212529;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:hover {
  background-color: #e0e5ff;
  color: #212529;
}

/* Selected item in the input area */
.choices__list--single .choices__item {
  color: #212529;
}

/* Placeholder text */
.choices__placeholder {
  color: #6c757d;
  opacity: 1;
}

.choices[data-type*=select-one] .choices__input {
  padding: 0.5rem 1rem;
  color: #212529;
}

.choices__input {
  font-size: 1rem;
  background-color: white;
  color: #212529;
}

/* Search match highlighting within dropdown items */
.choices__list--dropdown .choices__item mark,
.choices__list--dropdown .choices__item .highlight {
  background-color: #fff3cd;
  color: #212529;
  padding: 0 2px;
  border-radius: 2px;
}

/* Keep search match text readable on highlighted items */
.choices__list--dropdown .choices__item--selectable.is-highlighted mark,
.choices__list--dropdown .choices__item--selectable.is-highlighted .highlight {
  background-color: #ffeaa0;
  color: #212529;
}

.choices.is-focused .choices__inner {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

/* Custom dropdown arrow for non-Choices selects */
@media (min-width: 601px) {
  select.form-control:not(.choices__input) {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.25em 1.25em;
    padding-right: 3rem;
  }
}

/* ===========================================
   FORM PAGE LAYOUTS
   =========================================== */

/* Form Page Container */
.form-page {
  max-width: 700px;
  margin: 0 auto;
}

/* Verify Page Container (narrower) */
.verify-page {
  max-width: 500px;
  margin: 0 auto;
}

/* Form Header - Gradient */
.form-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px 12px 0 0;
}

.form-header h1 {
  margin: 0 0 0.75rem 0;
  font-size: 1.5rem;
}

.form-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Verify Header (centered text) */
.verify-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 12px 12px 0 0;
  text-align: center;
}

.verify-header h1 {
  margin: 0;
  font-size: 1.5rem;
}

.verify-header p {
  margin: 0.75rem 0 0 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Form Body */
.form-body {
  background: white;
  padding: 2rem;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Verify Body (alias) */
.verify-body {
  background: white;
  padding: 2rem;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Section Card */
.section-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dee2e6;
}

.section-title .icon {
  font-size: 1.1rem;
}

/* Intro Box */
.verify-intro {
  background: linear-gradient(135deg, #e8f4fd 0%, #f0e6ff 100%);
  border-left: 4px solid #667eea;
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.verify-intro p {
  margin: 0;
  color: #495057;
  font-size: 0.9rem;
}

/* Property Locked Display */
.property-locked {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.property-locked .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.property-locked .value {
  font-size: 1rem;
  font-weight: 600;
  color: #495057;
}

.property-locked .hint {
  font-size: 0.7rem;
  color: #adb5bd;
  margin-top: 0.25rem;
}

/* Responsive Form Layouts */
@media (max-width: 600px) {
  .form-page,
  .verify-page {
    margin: 0 -1rem;
  }

  .form-header,
  .verify-header {
    padding: 1.25rem;
    border-radius: 0;
  }

  .form-body,
  .verify-body {
    padding: 1.25rem;
    border-radius: 0;
  }

  .section-card {
    padding: 1rem;
  }

  .section-title {
    font-size: 0.9rem;
  }

  .form-label {
    font-size: 0.8rem;
  }
}
