.application-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
  max-width: 600px;
  margin: 20px auto;
}

.application-notice i {
  font-size: 22px;
  color: #f59e0b;
  color: #7f1d1d;
  margin-top: 2px;
}

.application-notice .notice-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.application-notice .notice-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* ================================== */
/*  PROGRESS STEPS  */
/* ================================== */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.application-steps {
  h2 {
    font-size: 1.5rem;
  }
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.step-item.active .step-number {
  background-color: #017c39;
  color: white;
}

.step-text {
  font-size: 0.875rem;
  color: #6b7280;
}

.step-item.active .step-text {
  color: #017c39;
  font-weight: 600;
}

.step-line {
  flex: 1;
  height: 2px;
  background-color: #e5e7eb;
  margin: 0 10px;
  margin-top: 20px;
}

/* ================================== */
/*  FORM SECTION  */
/* ================================== */
.form-section {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.form-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f3f4f6;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

/* Form Inputs */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

/* Application-specific styles */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.step-item.active .step-number {
  background-color: #017c39;
  color: white;
}

.step-text {
  font-size: 0.875rem;
  color: #6b7280;
}

.step-item.active .step-text {
  color: #017c39;
  font-weight: 600;
}

.step-line {
  flex: 1;
  height: 2px;
  background-color: #e5e7eb;
  margin: 0 10px;
  margin-top: 20px;
}

.upload-section {
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  padding: 20px;
}

.upload-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.upload-title {
  font-weight: 600;
  color: #1f2937;
}

.upload-required {
  background-color: #fee2e2;
  color: #dc2626;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
  display: none;
  font-weight: 500;
}

.upload-optional {
  background-color: #dbeafe;
  color: #1d4ed8;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

.upload-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.upload-area {
  border: 2px dashed #9ca3af;
  border-radius: 8px;
  padding: 32px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: white;
}

.upload-area:hover {
  border-color: #017c39;
  background-color: #f0fff4;
}

.upload-area.drag-over {
  border-color: #017c39;
  background-color: #f0fff4;
  transform: scale(1.02);
}

.upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.upload-icon {
  width: 48px;
  height: 48px;
  color: #9ca3af;
}

.upload-preview {
  margin-top: 16px;
  padding: 16px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.file-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #f9fafb;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-name {
  font-weight: 500;
  color: #1f2937;
}

.file-size {
  font-size: 0.75rem;
  color: #6b7280;
}

.app-btn-primary {
  background-color: #017c39;
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.app-btn-primary:disabled {
  background-color: lightgray;
  cursor: not-allowed;
}

.app-btn-primary:hover {
  background-color: #01652f;
  transform: translateY(-1px);
}

.app-btn-secondary {
  background-color: white;
  padding: 12px 24px;
  color: #017c39;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid #017c39;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.app-btn-secondary:hover {
  background-color: #f0fff4;
}
.app-btn-secondary.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.reg-mmssg-display {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.5;
  margin-top: 12px;
}

/* Info / Warning style */
.reg-mmssg-display.info {
  background-color: #fff7ed; /* soft orange */
  border: 1px solid #fed7aa;
  color: #9a3412;
}

.reg-mmssg-display i {
  font-size: 22px;
  margin-top: 2px;
  color: #f97316;
}

.reg-mmssg-display a {
  color: #c2410c;
  font-weight: 500;
  text-decoration: underline;
}

.reg-mmssg-display a:hover {
  text-decoration: none;
}
.reg-mmssg-display {
  display: none;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.reg-mmssg-display.show {
  display: flex;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .application-steps {
    h2 {
      font-size: 1rem;
    }
  }
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
  .step-text {
    font-size: 0.7rem;
  }

  .form-section-header {
    i {
      font-size: 0.1rem;
    }
  }

  .form-section-title {
    font-size: 0.865rem;
  }
  .form-section {
    padding: 14px;
  }
  .form-label {
    font-size: 0.765rem;
  }

  .form-input {
    font-size: 0.765rem;
  }
  /* Upload style */
  .upload-title {
    font-size: 0.8rem;
  }
  .upload-description {
    font-size: 0.75rem;
  }
  .upload-text {
    font-size: 0.765rem;
  }

  .upload-icon {
    width: 28px;
    height: 28px;
  }
  .file-preview {
    font-size: 0.7rem;
  }

  .application-notes {
    font-size: 0.8rem;

    li {
      font-size: 0.765rem;
    }
  }

  .declaration {
    font-size: 0.765rem;
  }
}
