#jazz-register-form {
  background: #fff;
  border-radius: 0;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
#jazz-register-form input,
#jazz-register-form select,
#jazz-register-form button {
  border-radius: 0 !important;
}
#jazz-register-form input,
#jazz-register-form select {
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
}
#jazz-register-form input:focus,
#jazz-register-form select:focus {
  border-color: #f36c21;
  box-shadow: 0 0 0 0.15rem rgba(243,108,33,0.25);
  outline: none;
}
#jazz-register-form label.form-label {
  display: none;
}
#jazz-register-form label[data-select-label="true"] {
  display: block !important;
  color: #f36c21 !important;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 0.825rem;
  position: absolute;
  top: -10px;
  background: #fff;
  left: 24px;
  padding: 0 4px;
}
.valid-feedback,
.invalid-feedback {
  font-size: 0.8rem;
  margin-top: 3px;
}
#jazz-register-form button.btn-primary {
  background: #f36c21;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
}
#jazz-register-form button.btn-primary:hover {
  background: #d85d1b;
  transform: translateY(-1px);
}
#jazz-register-form .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
#jazz-register-form .form-check-input {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  margin-top: 0;
  border-radius: 3px !important;
  cursor: pointer;
}
#jazz-register-form .form-check-input:checked {
  background-color: #f36c21;
  border-color: #f36c21;
}
#jazz-register-form .form-check-label {
  font-size: 14px;
  color: #333;
  line-height: 1.2;
  cursor: pointer;
}
.title-form {
  background-image: linear-gradient(to right, #f36c21, #7fc14d);
}