body {
  background-image: url("/de2b130dc73ba383ebc322900451d25c.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  padding: 20px 0;
}

.form-container {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-header {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
  color: white;
  border-radius: 20px 20px 0 0;
  padding: 30px;
  text-align: center;
}

.form-header h2 {
  margin: 0;
  font-weight: 300;
  font-size: 2.5rem;
}

.form-header p {
  margin: 10px 0 0 0;
  opacity: 0.9;
}

.form-body {
  padding: 40px;
}

.form-section {
  margin-bottom: 30px;
  padding: 25px;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.section-title {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-control:focus,
.form-select:focus {
  border-color: #000000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.input-group-text {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: white;
  border: 2px solid #000000;
  border-radius: 12px 0 0 12px;
}

.input-group .form-control {
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.btn-primary {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
  border: none;
  border-radius: 25px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #4a4a4a 100%);
}

.file-upload-area {
  border: 2px dashed #000000;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(26, 26, 26, 0.05) 100%
  );
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-area:hover {
  border-color: #333333;
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(26, 26, 26, 0.1) 100%
  );
  transform: translateY(-2px);
}

.dropdown-container {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.value-badge {
  display: inline-block;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  margin-left: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Custom Select2 Styling to match black and white theme */
.select2-container--bootstrap-5 .select2-selection {
  border: 2px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 8px 12px !important;
  min-height: 48px !important;
  background: #ffffff !important;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection {
  border-color: #000000 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.15) !important;
}

.select2-container--bootstrap-5 .select2-selection__rendered {
  color: #374151 !important;
  padding: 0 !important;
}

.select2-container--bootstrap-5 .select2-selection__placeholder {
  color: #9ca3af !important;
}

.select2-dropdown {
  border: 2px solid #000000 !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.select2-container--bootstrap-5 .select2-results__option--highlighted {
  background: linear-gradient(135deg, #000000 0%, #333333 100%) !important;
  color: white !important;
}

.select2-container--bootstrap-5 .select2-search__field {
  border-radius: 8px !important;
  border: 1px solid #e5e7eb !important;
}

.opacity-50 {
  opacity: 0.5;
  pointer-events: none;
}

.select2-container--disabled .select2-selection {
  background-color: #f3f4f6 !important;
  color: #9ca3af !important;
  cursor: not-allowed !important;
}

@media (max-width: 768px) {
  .dropdown-container {
    flex-direction: column;
    gap: 15px;
  }

  .form-body {
    padding: 20px;
  }
}
