.wdm-document-form {
	box-sizing: border-box;
	max-width: 620px;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid #dcdcde;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
}
.wdm-document-form *, .wdm-document-form *::before, .wdm-document-form *::after { box-sizing: border-box; }
.wdm-document-form--fullwidth {
	width: 100vw;
	max-width: none;
	margin: clamp(2.5rem, 5vw, 4rem) calc(50% - 50vw);
	padding: clamp(2.5rem, 6vw, 5rem) max(clamp(1.25rem, 5vw, 5rem), calc((100vw - 105rem) / 2 + clamp(1.25rem, 5vw, 5rem)));
	border: 0;
	border-radius: 0;
	background:
		linear-gradient(120deg, #161a3a, #23274f 48%, #134395),
		#23274f;
	box-shadow: none;
	color: #fff;
}
.wdm-document-form--fullwidth .wdm-form {
	max-width: 52rem;
}
.wdm-document-form--fullwidth .wdm-title {
	max-width: 60rem;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.08;
}
.wdm-document-form--fullwidth .wdm-description {
	max-width: 58rem;
	color: rgba(255, 255, 255, .82);
}
.wdm-document-form--fullwidth .wdm-field label,
.wdm-document-form--fullwidth .wdm-consent,
.wdm-document-form--fullwidth .wdm-noscript {
	color: rgba(255, 255, 255, .88);
}
.wdm-document-form--fullwidth .wdm-submit {
	background: #84ccd5;
	color: #161a3a;
}
.wdm-document-form--fullwidth .wdm-submit:hover { background: #9ee3ea; }
.wdm-title { margin: 0 0 .5rem; font-size: clamp(1.35rem, 3vw, 1.8rem); }
.wdm-description { margin: 0 0 1.25rem; }
.wdm-field label { display: block; margin-bottom: .4rem; font-weight: 600; }
.wdm-field input[type="email"] {
	width: 100%;
	min-height: 46px;
	padding: .65rem .8rem;
	border: 1px solid #8c8f94;
	border-radius: 6px;
	font: inherit;
}
.wdm-field input[type="email"]:focus { border-color: #2271b1; outline: 2px solid #2271b1; outline-offset: 1px; }
.wdm-consent { display: flex; gap: .65rem; align-items: flex-start; margin: 1rem 0; font-size: .92em; }
.wdm-consent input { margin-top: .25rem; flex: 0 0 auto; }
.wdm-submit {
	min-height: 46px;
	padding: .7rem 1.15rem;
	border: 0;
	border-radius: 6px;
	background: #2271b1;
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}
.wdm-submit:hover { background: #135e96; }
.wdm-submit:focus { outline: 2px solid currentColor; outline-offset: 2px; }
.wdm-submit[disabled] { opacity: .65; cursor: wait; }
.wdm-document-form .layer8-cap-field {
	display: grid;
	margin: 1rem 0;
}
.wdm-document-form .layer8-cap-field cap-widget {
	width: 100%;
	max-width: 100%;
	--cap-background: #fff;
	--cap-border-color: #8c8f94;
	--cap-border-radius: 6px;
	--cap-widget-width: 100%;
	--cap-widget-height: 46px;
	--cap-widget-padding: .6rem .8rem;
	--cap-color: #1d2327;
	--cap-checkbox-border: 1px solid #8c8f94;
	--cap-checkbox-border-radius: 6px;
	--cap-checkbox-background: #fff;
	--cap-font: inherit;
	--cap-spinner-color: #2271b1;
	--cap-spinner-background-color: #dcdcde;
	--cap-focus-ring: #2271b1;
}
.wdm-document-form .layer8-cap-field--invisible {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
.wdm-response:empty { display: none; }
.wdm-notice { margin: 0 0 1rem; padding: .8rem 1rem; border-left: 4px solid; border-radius: 4px; }
.wdm-notice-success { border-color: #00a32a; background: #edfaef; color: black; }
.wdm-notice-error { border-color: #d63638; background: #fcf0f1; }
.wdm-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.wdm-noscript { font-size: .85em; opacity: .75; }
.wdm-modal-open { overflow: hidden; }
.wdm-confirmation-modal {
	position: fixed;
	z-index: 99999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 4vw, 2rem);
	background: rgba(10, 16, 24, .66);
}
.wdm-confirmation-modal[hidden] { display: none; }
.wdm-confirmation-modal__panel {
	position: relative;
	box-sizing: border-box;
	width: min(100%, 34rem);
	padding: clamp(1.5rem, 4vw, 2.25rem);
	border-top: 5px solid #2271b1;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
	color: #1d2327;
}
.wdm-confirmation-modal--success .wdm-confirmation-modal__panel { border-color: #00a32a; }
.wdm-confirmation-modal--error .wdm-confirmation-modal__panel { border-color: #d63638; }
.wdm-confirmation-modal__close {
	position: absolute;
	top: .75rem;
	right: .75rem;
	display: inline-grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #50575e;
	font: inherit;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}
.wdm-confirmation-modal__close:hover,
.wdm-confirmation-modal__close:focus { background: #f0f0f1; color: #1d2327; }
.wdm-confirmation-modal__title {
	margin: 0 2.5rem .75rem 0;
	font-size: 1.45rem;
	line-height: 1.2;
	letter-spacing: 0;
}
.wdm-confirmation-modal__message {
	margin: 0 0 1.4rem;
	font-size: 1rem;
	line-height: 1.55;
}
.wdm-confirmation-modal__button {
	min-height: 42px;
	padding: .65rem 1rem;
	border: 0;
	border-radius: 6px;
	background: #2271b1;
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}
.wdm-confirmation-modal__button:hover,
.wdm-confirmation-modal__button:focus { background: #135e96; }
