.verify-dropzone-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verify-dropzone-bgicon {
  width: 110px;
  height: 110px;
  opacity: 0.13;
  color: var(--hp-primary, #2563eb);
}

.verify-dropzone-content {
  position: relative;
  z-index: 2;
}
.verify-dropzone-text {
  position: relative;
  z-index: 3;
}
/* Verify Page - Split Panel Design */

:root {
  /* Light theme (default) */
  --verify-page-bg: #f8fafc;
  --verify-text: rgba(15, 23, 42, 0.92);
  --verify-muted: rgba(15, 23, 42, 0.70);
  --verify-border: rgba(15, 23, 42, 0.10);
  --verify-surface: rgba(255, 255, 255, 0.96);
  --verify-surface-2: rgba(255, 255, 255, 1);
  --verify-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
  --verify-panel-bg-1: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  --verify-panel-bg-2: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  --verify-panel-border: rgba(0, 0, 0, 0.06);
  --verify-result-bg: rgba(255, 255, 255, 0.98);
  --verify-result-border: rgba(0, 0, 0, 0.06);
}


.verify-main-split {
  min-height: calc(100vh - 220px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--verify-page-bg);
}

/* Panels */
.verify-panel {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.verify-panel--id {
  background: var(--verify-panel-bg-1);
  border-right: 1px solid var(--verify-panel-border);
}

.verify-panel--upload {
  background: var(--verify-panel-bg-2);
}

.verify-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
}

.verify-panel--id::before {
  background: 
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
}

.verify-panel--upload::before {
  background: 
    radial-gradient(circle at 80% 30%, rgba(13, 212, 179, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
}

.verify-panel-content {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Panel Header */
.verify-panel-header {
  text-align: center;
}

.verify-panel-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconPulse 2s ease-in-out infinite;
}

.verify-panel--upload .verify-panel-icon {
  background: linear-gradient(135deg, rgba(13, 212, 179, 0.1), rgba(99, 102, 241, 0.1));
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.verify-panel-icon svg,
.verify-panel-icon .lucide-icon {
  width: 40px;
  height: 40px;
  color: var(--hp-primary);
}

.verify-panel--upload .verify-panel-icon svg,
.verify-panel--upload .verify-panel-icon .lucide-icon {
  color: #0d9488;
}

.verify-panel-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  color: var(--verify-text);
  line-height: 1.2;
}

.verify-panel-desc {
  color: var(--verify-muted);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Styles */
.verify-panel-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.verify-input-group,
.verify-upload-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.verify-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--verify-text);
  margin-bottom: 4px;
}

/* ID Input */
.verify-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.verify-input-icon {
  position: absolute;
  left: 20px;
  width: 22px;
  height: 22px;
  color: var(--verify-muted);
  pointer-events: none;
  z-index: 1;
  transition: color 0.2s ease;
}

.verify-input-icon.lucide-icon {
  width: 22px;
  height: 22px;
}

.verify-id-input {
  width: 100%;
  height: 60px;
  padding: 0 56px 0 56px;
  border: 2px solid var(--verify-border);
  border-radius: 16px;
  background: var(--verify-surface-2);
  font-size: 1.1rem;
  font-family: inherit;
  color: var(--verify-text);
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


.verify-id-input::placeholder {
  color: var(--verify-muted);
}

.verify-id-input:focus {
  border-color: var(--hp-primary);
  background: var(--verify-surface-2);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 4px 12px rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
}

.verify-id-input:focus ~ .verify-input-icon,
.verify-input-wrapper:focus-within .verify-input-icon {
  color: var(--hp-primary);
}

.verify-clear-btn {
  position: absolute;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--verify-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.verify-id-input:not(:placeholder-shown) ~ .verify-clear-btn {
  opacity: 1;
  pointer-events: all;
}

.verify-clear-btn:hover {
  background: var(--verify-surface);
  color: var(--verify-text);
}

.verify-clear-btn svg {
  width: 18px;
  height: 18px;
}

/* Dropzone */
.verify-dropzone {
  position: relative;
  width: 100%;
  min-height: 280px;
  border: 3px dashed var(--verify-border);
  border-radius: 20px;
  background: var(--verify-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}


.verify-dropzone:hover {
  border-color: var(--hp-primary);
  background: rgba(37, 99, 235, 0.02);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.verify-dropzone.is-active {
  border-color: var(--hp-primary);
  background: rgba(37, 99, 235, 0.08);
  border-style: solid;
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

.verify-dropzone.is-active .verify-dropzone-overlay {
  opacity: 1;
}

.verify-dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.verify-dropzone.is-active .verify-dropzone-content {
  transform: scale(1.05);
}

.verify-dropzone-icon {
  width: 64px;
  height: 64px;
  color: var(--hp-primary);
  transition: transform 0.3s ease;
}

.verify-dropzone:hover .verify-dropzone-icon,
.verify-dropzone.is-active .verify-dropzone-icon {
  transform: translateY(-6px) scale(1.1);
}

.verify-dropzone-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.verify-dropzone-main-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--verify-text);
}

.verify-dropzone-sub-text {
  font-size: 1rem;
  color: var(--verify-muted);
}

.verify-dropzone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.verify-dropzone:focus-visible {
  outline: 3px solid var(--hp-primary);
  outline-offset: 4px;
}

/* Filename Display */
.verify-filename-display {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(37, 99, 235, 0.08);
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lucide Icons Base Styles */
.lucide-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}

.verify-file-icon,
.verify-file-icon.lucide-icon {
  width: 24px;
  height: 24px;
  color: var(--hp-primary);
  flex-shrink: 0;
}

.verify-filename-text {
  flex: 1;
  font-size: 1rem;
  color: var(--verify-text);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verify-remove-file {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--verify-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.verify-remove-file:hover {
  background: var(--verify-surface);
  color: var(--verify-text);
}

.verify-remove-file svg,
.verify-remove-file .lucide-icon {
  width: 18px;
  height: 18px;
}

/* Error Message */
.verify-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(225, 29, 72, 0.1);
  border: 2px solid rgba(225, 29, 72, 0.3);
  border-radius: 14px;
  color: #e11d48;
  font-size: 1rem;
  animation: shake 0.4s ease-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.verify-error-icon,
.verify-error-icon.lucide-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Submit Button */
.verify-submit-btn {
  width: 100%;
  height: 64px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--hp-primary), #1d4ed8);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.verify-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.verify-submit-btn:hover::before {
  width: 400px;
  height: 400px;
}

.verify-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

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

.verify-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.verify-submit-text,
.verify-submit-loader {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.verify-submit-loader {
  display: none;
}

.verify-submit-btn[data-loading="true"] .verify-submit-text {
  display: none;
}

.verify-submit-btn[data-loading="true"] .verify-submit-loader {
  display: flex;
}

.verify-spinner {
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
}

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

/* Result Wrapper - Full Width */
.verify-result-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px;
  background: var(--verify-result-bg);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--verify-result-border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  z-index: 10;
  animation: slideUp 0.5s ease-out;
}


@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Result Card */
.verify-result-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: var(--verify-surface-2);
  border-radius: 24px;
  border: 1px solid var(--verify-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}


.verify-result-card[data-state="verified"] {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
  border-color: rgba(34, 197, 94, 0.3);
}

.verify-result-card[data-state="invalid"] {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.05));
  border-color: rgba(239, 68, 68, 0.3);
}

.verify-result-card[data-state="pending"] {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(245, 158, 11, 0.05));
  border-color: rgba(251, 191, 36, 0.3);
}

.verify-result-header {
  text-align: center;
  margin-bottom: 32px;
}

.verify-result-icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.verify-result-card[data-state="verified"] .verify-result-icon-wrapper {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.15));
}

.verify-result-card[data-state="invalid"] .verify-result-icon-wrapper {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
}

.verify-result-card[data-state="pending"] .verify-result-icon-wrapper {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.15));
}

.verify-result-icon,
.verify-result-icon.lucide-icon {
  width: 36px;
  height: 36px;
}

.verify-result-card[data-state="verified"] .verify-result-icon {
  color: #22c55e;
}

.verify-result-card[data-state="invalid"] .verify-result-icon {
  color: #ef4444;
}

.verify-result-card[data-state="pending"] .verify-result-icon {
  color: #fbbf24;
}

.verify-result-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--verify-text);
}

.verify-result-message {
  color: var(--verify-muted);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.6;
}

/* Details Grid */
.verify-result-details {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--verify-border);
  animation: fadeIn 0.4s ease-out 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.verify-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
}

.verify-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.verify-detail-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--verify-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.verify-detail-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--verify-text);
}

.verify-detail-status {
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.verify-detail-status::before {
  content: '✓';
  font-size: 1.3em;
}

/* Actions */
.verify-result-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--verify-border);
  justify-content: center;
  animation: fadeIn 0.4s ease-out 0.3s both;
}

.verify-action-btn {
  min-width: 180px;
  height: 52px;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.verify-action-btn svg,
.verify-action-btn .lucide-icon {
  width: 20px;
  height: 20px;
}

.verify-action-btn--primary {
  background: var(--hp-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.verify-action-btn--primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.verify-action-btn--secondary {
  background: var(--verify-surface);
  color: var(--verify-text);
  border: 2px solid var(--verify-border);
}

.verify-action-btn--secondary:hover {
  background: var(--verify-surface-2);
  border-color: var(--hp-primary);
  color: var(--hp-primary);
}

/* Message Container */
.verify-result-message2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 18px 24px;
  background: rgba(37, 99, 235, 0.08);
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  color: var(--hp-primary);
  font-size: 1rem;
  animation: fadeIn 0.4s ease-out 0.4s both;
}

.verify-message-icon,
.verify-message-icon.lucide-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .verify-main-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .verify-panel {
    min-height: auto;
    padding: 48px 32px;
  }

  .verify-panel--id {
    border-right: none;
    border-bottom: 1px solid var(--verify-panel-border);
  }

  .verify-result-wrapper {
    position: relative;
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .verify-panel {
    padding: 40px 24px;
  }

  .verify-panel-title {
    font-size: 2rem;
  }

  .verify-panel-desc {
    font-size: 1rem;
  }

  .verify-panel-icon {
    width: 64px;
    height: 64px;
  }

  .verify-panel-icon svg,
  .verify-panel-icon .lucide-icon {
    width: 32px;
    height: 32px;
  }

  .verify-id-input {
    height: 56px;
    font-size: 1rem;
  }

  .verify-dropzone {
    min-height: 240px;
  }

  .verify-dropzone-content {
    padding: 32px 24px;
  }

  .verify-dropzone-icon {
    width: 56px;
    height: 56px;
  }

  .verify-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .verify-result-actions {
    flex-direction: column;
  }

  .verify-action-btn {
    width: 100%;
  }

  .verify-result-wrapper {
    padding: 24px 20px;
  }

  .verify-result-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .verify-panel {
    padding: 32px 20px;
  }

  .verify-panel-title {
    font-size: 1.75rem;
  }

  .verify-dropzone {
    min-height: 200px;
  }

  .verify-dropzone-main-text {
    font-size: 1.1rem;
  }

  .verify-dropzone-sub-text {
    font-size: 0.9rem;
  }
}
