/* Custom styles for forced important classes */
.form-section {
  background: linear-gradient(
    to bottom right,
    #f8fafc,
    #e0f2fe,
    #e0e7ff
  ) !important;
  padding: 4rem 1rem !important;
}
.form-container {
  background: white !important;
  padding: 2.5rem !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  border: 1px solid #dbeafe !important;
  position: relative !important;
  overflow: hidden !important;
}
.form-header-bar {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 0.5rem !important;
  background: linear-gradient(to right, #3b82f6, #6366f1) !important;
}
.section-title {
  font-size: 1.5rem !important;
  font-weight: bold !important;
  color: #1f2937 !important;
  display: flex !important;
  align-items: center !important;
  border-bottom: 1px solid #e5e7eb !important;
  padding-bottom: 0.75rem !important;
  margin-bottom: 1.5rem !important;
}
.form-field {
  margin-bottom: 1.5rem !important;
}
.form-label {
  color: #374151 !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  margin-bottom: 0.5rem !important;
}
.form-input {
  height: 3rem !important;
  border: 1px solid #d1d5db !important;
  padding: 0 1rem !important;
  border-radius: 0.5rem !important;
  width: 100% !important;
}
.form-input:focus {
  border-color: #3b82f6 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}
.radio-option {
  display: flex !important;
  align-items: center !important;
  padding: 1rem !important;
  border-radius: 0.75rem !important;
  border: 1px solid !important;
  margin-bottom: 0.75rem !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
}
.radio-option:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}
.radio-option.remote {
  background: linear-gradient(to right, #dbeafe, #e0e7ff) !important;
  border-color: #3b82f6 !important;
}
.radio-option.onsite {
  background: linear-gradient(to right, #dcfce7, #d1fae5) !important;
  border-color: #10b981 !important;
}
.radio-option.hybrid {
  background: linear-gradient(to right, #fdf2f8, #fce7f3) !important;
  border-color: #8b5cf6 !important;
}
.upload-area {
  background: linear-gradient(to right, #fff7ed, #fef2f2) !important;
  padding: 2rem !important;
  border-radius: 1rem !important;
  border: 1px solid #fed7aa !important;
  text-align: center !important;
}
.upload-dropzone {
  border: 2px dashed #fb923c !important;
  padding: 1.5rem !important;
  border-radius: 0.75rem !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
}
.upload-dropzone:hover {
  border-color: #f97316 !important;
}
.submit-btn {
  background: linear-gradient(to right, #3b82f6, #6366f1) !important;
  color: white !important;
  padding: 1rem 3rem !important;
  border-radius: 1rem !important;
  font-weight: bold !important;
  font-size: 1.125rem !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}
.submit-btn:hover {
  background: linear-gradient(to right, #2563eb, #5855d6) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}
.cta-section {
  text-align: center !important;
  margin-top: 3rem !important;
  background: linear-gradient(to right, #6366f1, #8b5cf6) !important;
  padding: 2rem !important;
  border-radius: 1.5rem !important;
  color: white !important;
}
