.p2s-form-overlay {
		position: fixed;
		inset: 0;
		background: rgba(255,255,255,.72);
		backdrop-filter: blur(2px);
		z-index: 99999;
		display: none;
		align-items: center;
		justify-content: center;
	}

	.p2s-form-overlay.is-visible {
		display: flex !important;
	}

	.p2s-form-overlay__box {
		background: #fff;
		border: 1px solid #dee2e6;
		border-radius: 12px;
		padding: 24px 28px;
		min-width: 260px;
		text-align: center;
		box-shadow: 0 10px 30px rgba(0,0,0,.12);
	}

	.p2s-form-overlay__spinner {
		width: 42px;
		height: 42px;
		margin: 0 auto 12px;
		border: 4px solid #dee2e6;
		border-top-color: #00ac7b;
		border-radius: 50%;
		animation: p2sSpin .8s linear infinite;
	}

	.p2s-form-overlay__spinner.is-hidden {
		display: none;
	}

	#p2sFormOverlayText {
		white-space: pre-line;
	}

	@keyframes p2sSpin {
		to { transform: rotate(360deg); }
	}

	/* Lock sections until Account Type is selected */
	.p2s-locked {
		position: relative;
		opacity: .55;
	}

	.p2s-locked::after {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(248, 249, 250, .55);
		border-radius: .5rem;
		z-index: 20;
		pointer-events: all;
		cursor: not-allowed;
	}

	.p2s-locked .form-control,
	.p2s-locked .form-select,
	.p2s-locked .input-group-text {
		background-color: #e9ecef !important;
	}

	input[readonly], textarea[readonly]{
		background-color:#e9ecef !important;
	}

	#registerValidationSummary {
		border: 1px solid #FF007A;
		background: #f6f8fb;
		color: #002B5C;
	}

	#registerValidationSummary .p2s-validation-summary__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}

	#registerValidationSummary .p2s-validation-summary__text {
		color: #002B5C;
	}

	#registerValidationSummary .p2s-validation-summary__close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		min-width: 32px;
		padding: 0;
		border: 1px solid #002B5C;
		border-radius: 50%;
		background: #fff;
		color: #002B5C;
		font-size: 20px;
		line-height: 1;
		cursor: pointer;
		transition: all .15s ease-in-out;
	}

	#registerValidationSummary .p2s-validation-summary__close:hover,
	#registerValidationSummary .p2s-validation-summary__close:focus {
		background: #002B5C;
		color: #fff;
		outline: none;
	}

	form[name="register"] .p2s-field-error,
	form[name="register"] #signatureError {
		color: #495057;
		font-style: normal;
	}

	#canvas,
	#newSignature {
		touch-action: none;
		-ms-touch-action: none;
		-webkit-user-select: none;
		user-select: none;
		-webkit-touch-callout: none;
	}

	#newSignature {
		display: block;
		width: 100%;
		height: 180px;
		background: #fff;
	}