/* Prospect Signup Styles */

.signup-section {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 100vh;
  background-color: #f5f5f4;
}

.signup-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.signup-form-card {
  padding: 32px;
}

/* Step indicator */
.signup-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.signup-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.signup-step .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: #e7e5e4;
  color: #78716c;
  transition: all 0.2s ease;
}

.signup-step.active .step-number {
  background: #1c1917;
  color: #ffffff;
}

.signup-step.completed .step-number {
  background: #16a34a;
  color: #ffffff;
}

.signup-step .step-label {
  font-size: 11px;
  color: #78716c;
  font-weight: 500;
}

.signup-step.active .step-label {
  color: #1c1917;
}

.signup-step-line {
  width: 40px;
  height: 2px;
  background: #e7e5e4;
  margin-bottom: 18px;
}

.signup-step-line.completed {
  background: #16a34a;
}

/* Titles */
.signup-title {
  font-size: 21px;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 8px;
}

.signup-subtitle {
  font-size: 14px;
  color: #78716c;
  margin-bottom: 24px;
}

/* Form elements */
.signup-card .form-label {
  font-size: 13px;
  font-weight: 500;
  color: #57534e;
  margin-bottom: 4px;
}

.signup-card .form-control,
.signup-card .form-select {
  height: 38px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #d6d3d1;
}

.signup-card .form-control:focus,
.signup-card .form-select:focus {
  border-color: #1c1917;
  box-shadow: 0 0 0 2px rgba(28, 25, 23, 0.1);
}

.signup-card textarea.form-control {
  height: auto;
}

/* Buttons */
.signup-btn {
  height: 42px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  background: #1c1917;
  border: none;
  margin-top: 8px;
}

.signup-btn:hover {
  background: #292524;
}

.signup-btn:active {
  transform: scale(0.98);
}

.signup-footer-text {
  text-align: center;
  font-size: 13px;
  color: #78716c;
  margin-top: 20px;
  margin-bottom: 0;
}

.signup-card a,
.signup-card .btn-link,
.signup-footer-text a,
.signup-section a {
  color: #1c1917;
  font-weight: 500;
  text-decoration: none;
}

.signup-card a:hover,
.signup-card .btn-link:hover,
.signup-footer-text a:hover,
.signup-section a:hover {
  color: #78716c;
  text-decoration: none;
}

/* Verify page */
.verify-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f5f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.verify-icon-wrapper i {
  font-size: 28px;
  color: #1c1917;
}

.otp-input {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 8px;
  height: 52px;
}

/* Success page */
.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon-wrapper i {
  font-size: 40px;
  color: #16a34a;
}

.submitted-info {
  background: #fafaf9;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}

.submitted-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: #57534e;
}

.submitted-info-item i {
  font-size: 18px;
  color: #78716c;
}

/* Application cards (dashboard) */
.application-card {
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.application-card:hover {
  border-color: #d6d3d1;
}

.application-card-body {
  padding: 16px;
}

.application-company {
  font-size: 15px;
  font-weight: 600;
  color: #1c1917;
}

.application-cin {
  font-size: 12px;
  color: #78716c;
  font-family: monospace;
  margin-top: 2px;
}

.application-date {
  font-size: 12px;
  color: #a8a29e;
  margin-top: 4px;
}

.application-card-footer {
  padding: 10px 16px;
  background: #fafaf9;
  border-top: 1px solid #e7e5e4;
}

/* Wizard tabs */
.wizard-tabs {
  border-bottom: 1px solid #e7e5e4;
  margin-bottom: 0;
}

.wizard-tabs .nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #78716c;
  padding: 10px 16px;
  border: none;
  border-bottom: 2px solid transparent;
}

.wizard-tabs .nav-link.active {
  color: #1c1917;
  border-bottom-color: #1c1917;
  background: transparent;
}

.wizard-tabs .nav-link:hover:not(.active) {
  color: #57534e;
  border-bottom-color: #d6d3d1;
}

.wizard-tab-body {
  padding: 24px 0;
}

.wizard-tab-content {
  min-height: 300px;
}

/* Footer navigation */
.wizard-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #e7e5e4;
}

/* CIN lookup */
.cin-toggle-section .btn-group .btn {
  font-size: 13px;
  padding: 8px 16px;
}

.cin-toggle-section .btn-check:checked + .btn {
  background: #1c1917;
  color: #ffffff;
  border-color: #1c1917;
}

.cin-lookup-result {
  font-size: 13px;
}

/* Director cards */
.director-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #fafaf9;
  border-radius: 8px;
  border: 1px solid #e7e5e4;
  margin-bottom: 8px;
}

.director-info {
  flex: 1;
}

.director-name {
  font-size: 14px;
  font-weight: 600;
  color: #1c1917;
}

.director-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #78716c;
  margin-top: 2px;
}

.director-actions {
  display: flex;
  gap: 4px;
}

.director-actions .btn {
  padding: 4px 8px;
}

/* Services checklist */
.services-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fafaf9;
  border-radius: 6px;
  border: 1px solid #e7e5e4;
  cursor: pointer;
  font-size: 13px;
  color: #57534e;
  transition: all 0.15s ease;
}

.service-checkbox:hover {
  border-color: #d6d3d1;
}

.service-checkbox:has(input:checked) {
  background: #f0fdf4;
  border-color: #16a34a;
  color: #1c1917;
}

/* Autosave floating indicator */
.autosave-floating {
  position: fixed;
  top: 72px;
  right: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #16a34a;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #dcfce7;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: autosaveSlideIn 0.3s ease;
}

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

/* Empty state (reuse global pattern) */
.signup-card .empty-state > i {
  font-size: 2rem;
  color: #d6d3d1;
}

/* Responsive */
@media (max-width: 768px) {
  .signup-section {
    padding-top: 80px;
  }

  .signup-card {
    padding: 24px 20px;
  }

  .services-checklist {
    grid-template-columns: 1fr;
  }

  .director-meta {
    flex-wrap: wrap;
  }

  .wizard-tabs .nav-link {
    padding: 8px 10px;
    font-size: 12px;
  }

  .wizard-tabs .nav-link i {
    display: none;
  }
}
