@media (max-width:768px) {}

.career-form-wrap {
	width: 100%;
	max-width: 100%;
	background: #2f2f2f;
	padding: 32px;
	border-radius: 8px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
	box-sizing: border-box;
}

.career-form-title {
	color: #fff;
	text-align: center;
	font-family: Barlow, sans-serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 22px;
}

.career-form-wrap p {
	margin: 0 0 18px;
}

.career-form-wrap label {
	display: block;
	color: #fff;
	font-family: Barlow, sans-serif;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 6px;
}

.career-form-wrap .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.career-form-wrap input:not([type="submit"]):not([type="checkbox"]):not([type="file"]), .career-form-wrap select, .career-form-wrap textarea {
	width: 100%;
	height: 48px;
	padding: 0 14px;
	font-size: 14px;
	font-family: Barlow, sans-serif;
	border: 1px solid #777;
	background: #555;
	color: #fff;
	border-radius: 4px;
	box-sizing: border-box;
	appearance: none;
}

.career-form-wrap textarea {
	height: 110px;
	padding: 12px 14px;
	resize: vertical;
}

.career-form-wrap input[type="file"] {
	width: 100%;
	padding: 10px 0;
	font-size: 14px;
	font-family: Barlow, sans-serif;
	color: #fff;
	background: transparent;
	border: none;
}

.career-form-wrap input::placeholder, .career-form-wrap textarea::placeholder {
	color: #ddd;
	opacity: 1;
}

.career-form-wrap input:focus, .career-form-wrap select:focus, .career-form-wrap textarea:focus {
	border-color: #f5ad0d;
	outline: none;
	box-shadow: 0 0 0 2px rgba(245, 173, 13, .15);
}

.career-form-wrap select {
	background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 40px;
}

.career-form-wrap .wpcf7-acceptance {
	display: block;
	margin-top: 6px;
}

.career-form-wrap .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #eee;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
}

.career-form-wrap .wpcf7-acceptance input[type="checkbox"] {
	margin-top: 3px;
	accent-color: #f5ad0d;
}

.career-form-wrap input[type="submit"] {
	display: inline-block;
	min-width: 190px;
	background: #f5ad0d;
	color: #000;
	font-family: Barlow, sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding: 13px 26px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: .3s ease;
	height: auto;
}

.career-form-wrap input[type="submit"]:hover {
	background: #e09d09;
}

.career-form-wrap .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 10px 12px;
	color: #fff;
	border-color: #f5ad0d;
}

@media (max-width:768px) {
	.career-form-wrap {
		padding: 22px;
	}
	
	.career-form-title {
		font-size: 24px;
		margin-bottom: 18px;
	}
	
	.career-form-wrap input[type="submit"] {
		width: 100%;
		min-width: 100%;
	}
}