.dpf-wrap {
	font-family: inherit;
	max-width: 100%;
	box-sizing: border-box;
}

.dpf-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}


.dpf-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.dpf-label {
	font-size: .9rem;
	font-weight: 600;
	color: inherit;
	display: block;
}

.dpf-req {
	color: #e74c3c;
	margin-left: 3px;
}


.dpf-input {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid #D9E2EE;
	border-radius: 9px;
	font-family: inherit;
	font-size: .95rem;
	color: inherit;
	background: #fff;
	box-sizing: border-box;
	outline: none;
	transition: border-color .15s, box-shadow .15s;
	appearance: none;
	-webkit-appearance: none;
}

.dpf-input:focus {
	border-color: #134E8E;
	box-shadow: 0 0 0 3px rgba(19,78,142,.1);
}

.dpf-input::placeholder { color: #aab4c0; }

.dpf-textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.6;
}

.dpf-select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2366758B' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}


.dpf-checkbox-label {
	display: inline-flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: .9rem;
}

.dpf-checkbox {
	width: 18px;
	height: 18px;
	border: 1.5px solid #D9E2EE;
	border-radius: 5px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: #134E8E;
	cursor: pointer;
}


.dpf-recaptcha {
	margin-top: 4px;
}


.dpf-msg-error {
	padding: 10px 14px;
	background: #FFF0F0;
	border: 1px solid #FECACA;
	border-radius: 9px;
	color: #B91C1C;
	font-size: .88rem;
	font-weight: 600;
}


.dpf-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	background: #134E8E;
	color: #fff;
	border: none;
	border-radius: 9px;
	font-family: inherit;
	font-size: .95rem;
	font-weight: 700;
	cursor: pointer;
	transition: background .15s, opacity .15s;
	width: 100%;
}

.dpf-submit:hover { background: #0F3D70; }
.dpf-submit:focus { outline: none; box-shadow: 0 0 0 3px rgba(19,78,142,.22); }
.dpf-submit:disabled { opacity: .6; cursor: not-allowed; }


.dpf-spin {
	animation: dpf-rotate .7s linear infinite;
}
@keyframes dpf-rotate {
	to { transform: rotate(360deg); }
}


.dpf-success {
	text-align: center;
	padding: 40px 24px;
	border: 1.5px solid rgba(19,78,142,.15);
	border-radius: 14px;
	background: rgba(19,78,142,.03);
}

.dpf-success-icon {
	color: #134E8E;
	margin-bottom: 16px;
}

.dpf-success-msg {
	font-size: 1rem;
	font-weight: 600;
	color: inherit;
	line-height: 1.6;
}
