.wpcf7 .wpcf7-response-output {
	margin: 30px 0 0;
	padding: 15px 20px;
	border: 0;
	color: #fff
}

.wpcf7 .wpcf7-validation-errors {
	background: #f0ad4e
}

.wpcf7 .wpcf7-mail-sent-ok {
	background: #5cb85c
}

.wpcf7 .wpcf7-not-valid-tip {
	margin-top: 5px;
	color: #d9534f;
	font-size: 12px
}

.wpcf7 {
	text-align: left
}

.wpcf7 label {
	font-weight: 500;
	margin-bottom: 0;
	display: block
}

.wpcf7 textarea {
	height: 120px !important
}

.wpcf7 p {
	font-size: 14px;
	margin-bottom: 0
}

.wpcf7 p+p {
	margin-top: 15px
}

.wpcf7 span.wpcf7-not-valid-tip {
	margin-top: 5px
}

.wpcf7 .civi-button {
	width: 100%;
	height: 60px
}

.wpcf7 .wpcf7-form-control-wrap .wpcf7-form-control {
	/*width:100%;*/
	border-radius: 12px;
	border-color: #ddd;
	height: 40px
}

.wpcf7 .wpcf7-submit {
	width: 100%
}

.wpcf7 div.wpcf7-response-output,
.wpcf7 div.wpcf7-mail-sent-ng,
.wpcf7 div.wpcf7-aborted,
.wpcf7 div.wpcf7-validation-errors,
.wpcf7 div.wpcf7-acceptance-missing {
	margin: 0;
	font-size: 15px;
	padding: 10px 20px;
	color: var(--civi-color-primary)
}.wpcf7 .wpcf7-response-output {
	margin: 30px 0 0;
	padding: 15px 20px;
	border: 0;
	color: #fff
}

.wpcf7 .wpcf7-validation-errors {
	background: #f0ad4e
}

.wpcf7 .wpcf7-mail-sent-ok {
	background: #5cb85c
}

.wpcf7 .wpcf7-not-valid-tip {
	margin-top: 5px;
	color: #d9534f;
	font-size: 12px
}

.wpcf7 {
	text-align: left
}

.wpcf7 label {
	font-weight: 500;
	margin-bottom: 0;
	display: block
}

.wpcf7 textarea {
	height: 120px !important
}

.wpcf7 p {
	font-size: 14px;
	margin-bottom: 0
}

.wpcf7 p+p {
	margin-top: 15px
}

.wpcf7 span.wpcf7-not-valid-tip {
	margin-top: 5px
}

.wpcf7 .civi-button {
	width: 100%;
	height: 60px
}

.wpcf7 .wpcf7-form-control-wrap .wpcf7-form-control {
	/*width:100%;*/
	border-radius: 12px;
	border-color: #ddd;
	height: 50px
}

.wpcf7 .wpcf7-submit {
	width: 100%
}

.wpcf7 div.wpcf7-response-output,
.wpcf7 div.wpcf7-mail-sent-ng,
.wpcf7 div.wpcf7-aborted,
.wpcf7 div.wpcf7-validation-errors,
.wpcf7 div.wpcf7-acceptance-missing {
	margin: 0;
	font-size: 15px;
	padding: 10px 20px;
	color: var(--civi-color-primary)
}
/* ====== JOB APPLICATION FORM STYLING ====== */

.job-form-wrapper {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-family: 'Inter', 'Roboto', sans-serif;
}

.job-form-wrapper .form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.job-form-wrapper .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.job-form-wrapper label {
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

.job-form-wrapper input[type="text"],
.job-form-wrapper input[type="email"],
.job-form-wrapper input[type="tel"],
.job-form-wrapper input[type="url"],
.job-form-wrapper select,
.job-form-wrapper textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
  transition: border-color 0.3s ease;
}

.job-form-wrapper input:focus,
.job-form-wrapper select:focus,
.job-form-wrapper textarea:focus {
  border-color: #0073aa;
  outline: none;
}

.job-form-wrapper textarea {
  min-height: 100px;
  resize: vertical;
}

.job-form-wrapper .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.job-form-wrapper .submit {
  text-align: center;
  margin-top: 25px;
}

.job-form-wrapper input[type="submit"] {
  background-color: #0073aa;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.job-form-wrapper input[type="submit"]:hover {
  background-color: #005b85;
}

/* Responsive */
@media (max-width: 600px) {
  .job-form-wrapper {
    padding: 20px;
  }
}

