/**
 * Pardot Custom Form - Front-end styles.
 */

.pcf-form-wrapper {
	max-width: 640px;
	margin: 0 auto;
}
.pcf-form-error-banner {
	background: #fcf0f1;
	border: 1px solid #d63638;
	color: #8a1f1f;
	padding: 12px 16px;
	margin-bottom: 16px;
	border-radius: 4px;
}
.pcf-form-error-banner[hidden] {
	display: none;
}
.pcf-field {
	margin-bottom: 10px;
}
.pcf-field.pcf-hidden,
.pcf-field-state.pcf-hidden {
	display: none;
}
.pcf-label,
.pcf-checkbox-label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.pcf-checkbox-label {
	display: inline;
	font-weight: 400;
	color: #fff;
    font-size: 14px;
}
.pcf-checkbox-label a{color:#337ab7;}
.pcf-checkbox-wrap {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.pcf-checkbox-wrap .pcf-checkbox {
	margin-top: 4px;
	flex-shrink: 0;
}

.pcf-required {
	color: #d63638;
	margin-left: 2px;
}

.pcf-input {
	width: 100%;
    height: 37px;
    padding: 0px;
    font-family: 'Fira Sans', Arial, sans-serif !important;
    font-size: 12px;
    color: #fff;
    text-align: left !important;
    margin: 5px 0px !important;
    background-color: #324458;
    border-radius: 8px;
	border: 0.5px solid #fff;
}
.pcf-select{font-weight: bold;}
.pcf-checkbox.pcf-input{width: auto;}
.pcf-input::placeholder {
    color: #fff;
    opacity: 1;
    font-weight: 700;
}
.pcf-input:focus {
    outline: 0 none;
}
.pcf-textarea {
	min-height: 120px;
	resize: vertical;
	padding: 5px 2px;
}
.pcf-field-error {
	color: #d63638;
	font-size: 13px;
	min-height: 0;
	font-weight: 500;
}
.pcf-field-error:not(:empty) {
	min-height: 18px;
}
.pcf-radio-option {
	margin-bottom: 8px;
}
.pcf-radio-option label {
	margin-left: 6px;
}
.pcf-field-submit{text-align: center;}
.pcf-submit-button {
	background: #c4d600;
	color: #1c2427;
	border: none;
	padding: 2px 40px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s;
	line-height: 35px;
}
.pcf-submit-button:hover {
	color: #c4d600;
	background: #2882db;
}
.pcf-submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.pcf-thank-you {
	padding: 24px;
	background: #edfaef;
	border: 1px solid #00a32a;
	border-radius: 4px;
	color: #1d2327;
}
.pcf-thank-you p {
	margin: 0 0 12px;
}
.pcf-thank-you p:last-child {
	margin-bottom: 0;
}
.pcf-field-recaptcha .pcf-field-error {
	margin-top: 8px;
}
/* css for old form style */
.classic-form .pcf-input{
	border: 1px solid #d3d3d3;
	color: #5b5b5b;
	border-radius: 0;
	background-color: #fff;
	font-size: 14px;
}
.pcf-checkbox{height: 18px;}
.classic-form .pcf-input::placeholder {color: #5b5b5b;}
.classic-form .pcf-checkbox-label{color: #5b5b5b;}
.classic-form .pcf-select{font-weight: bold;}