.cjsf-form {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cjsf-input-wrapper {
  position: relative;
  width: 200px;
}

.cjsf-input-wrapper input {
  width: 100%;
  padding: 10px 10px 10px 30px;
  border-radius: 8px;
 border: none !important;
}

.cjsf-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.cjsf-location-wrapper {
  width: 200px;
}

.cjsf-location {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none !important;
  max-width: 240px;
}
.custom-job-form{
	border: 1px solid #EDEDED;
    box-shadow: 0px 2px 40px 0px #0B23330D;
  	border-radius: 20px;
  	justify-content: space-between;
    padding: 36px 32px;
}
.cjsf-submit {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cjsf-submit:hover {
  background-color: #0056b3;
}