

.form-section h2 {
  text-align: center;
  color: #1e88e5;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.form-section h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 2px;
  background: #64b5f6;
  margin: 6px auto 0;
}

.form-section input,
.form-section select {
  width: 90%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-bottom: 2px solid #c7deea;
  background: transparent;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

/* Remove spinner arrows from number inputs */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

.form-section input:focus,
.form-section select:focus {
  border-color: #64b5f6;
}

.form-section input::placeholder {
  color: #b1a6b1;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row > div {
  flex: 1;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

.checkbox-wrapper input[type="checkbox"] {
  width: auto;
  margin-bottom: 0;
}

.send-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background-color: #1e88e5;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.send-btn i {
  margin-right: 8px;
}

.select2-container{
    width: 90% !important;
}
