/* Contact form */
.contact-form .hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form .form-success-banner {
	margin-bottom: 16px;
	padding: 14px 16px;
	border-radius: 8px;
	border: 1px solid #A7D7B8;
	background: #E6F6ED;
	color: #1A673A;
	font-size: 14px;
}

.contact-form .form-error-banner {
	display: none;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	margin-bottom: 16px;
	border-radius: 8px;
	border: 1px solid #F5C2C7;
	background: #FDECEC;
	color: #2F3438;
}

.contact-form .form-error-banner.is-visible {
	display: flex;
}

.contact-form .form-error-banner strong {
	display: block;
	color: #DB0808;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.contact-form .form-control.error {
	border-color: #DB0808 !important;
}

.contact-form .field-error-text:empty {
	display: none;
}

.contact-form .submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.contact-form .form-row[hidden] {
	display: none;
}

.contact-form select.form-control {
	color: var(--Dark-Gray, #767676);
}

.contact-form select.form-control:has(option:checked:not([value=""])),
.contact-form select.form-control.has-value {
	color: var(--Charcoal, #2F3438);
}

.contact-form select.form-control option {
	color: var(--Charcoal, #2F3438);
}

.contact-form select.form-control option[value=""] {
	color: var(--Dark-Gray, #767676);
}

/* Public header — current section */
.main-header-sec .navbar-expand-lg .navbar-nav .nav-link.active,
.main-header-sec .navbar-expand-lg .navbar-nav .nav-item.active > .nav-link {
	color: #255A66;
}

.main-header-sec .navbar-expand-lg .navbar-nav .nav-item.active > .sub-menu-arrow svg path {
	fill: #255A66;
}

.main-header-sec .navbar-expand-lg .navbar-nav .sub-menu .nav-link.active {
	background-color: #E3EAF0;
	color: #255A66 !important;
}

/* Create Provider Account — eligibility checkbox validation (Figma) */
.wizard-card .check-item input.eligibility-check {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex-shrink: 0;
	border: 1px solid #C5CED6;
	border-radius: 2px;
	background-color: #fff;
	cursor: pointer;
	outline: none;
	box-shadow: none;
}

.wizard-card .check-item input.eligibility-check:checked {
	border-color: var(--Rich-Teal, #255A66) !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='darkgreen' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 10px;
}

.wizard-card .check-item input.eligibility-check.error,
.wizard-card .check-item.has-error input.eligibility-check,
.wizard-card .check-item:has(input.eligibility-check.error) input.eligibility-check {
	border: 2px solid #DB0808 !important;
	outline: none !important;
	outline-offset: 0 !important;
	background-color: #fff;
	background-image: none;
}

.wizard-card .check-item input.eligibility-check.error:checked,
.wizard-card .check-item.has-error input.eligibility-check:checked,
.wizard-card .check-item:has(input.eligibility-check.error) input.eligibility-check:checked {
	border-color: #DB0808 !important;
	background-color: var(--Rich-Teal, #255A66);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 10px;
}

/* Error pages (404, 403) */
.error-page-hero {
	padding: 80px 20px;
	position: relative;
	background: url(../images/about-hero.png) no-repeat center / cover;
}

.error-page-hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: linear-gradient(71deg, rgba(37, 90, 102, 0.85) 60%, rgba(255, 255, 255, 0.36) 100%);
}

.error-page-hero-content {
	position: relative;
	z-index: 1;
	width: 740px;
	max-width: 100%;
	padding: 24px;
	border: 1px solid #E3EAF0;
	border-radius: 16px;
	background: rgba(37, 90, 102, 0.05);
}

.error-page-hero-content span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--Soft-Gold, #E2BE6A);
	font-family: Inter, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: normal;
}

.error-page-hero-content span::before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 2px;
	background: var(--Soft-Gold, #E2BE6A);
}

.error-page-hero-content h1 {
	margin: 20px 0;
	color: var(--Pure-White, #FFF);
	font-family: Inter, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: normal;
}

.error-page-hero-content p {
	color: var(--Pure-White, #FFF);
	font-family: Inter, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 34px !important;
}

.error-page-content {
	padding: 80px 20px;
	background: var(--Pure-White, #FFF);
}

.error-page-box {
	display: flex;
	align-items: center;
	gap: 64px;
}

.error-page-visual {
	flex: 0 0 420px;
	max-width: 100%;
}

.error-page-visual img {
	display: block;
	width: 100%;
	height: auto;
}

.error-page-details h2 {
	margin: 0 0 16px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter, sans-serif;
	font-size: 32px;
	font-weight: 600;
	line-height: normal;
}

.error-page-details p {
	max-width: 560px;
	color: var(--Charcoal, #2F3438);
	font-family: Inter, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 28px !important;
}

.error-page-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

@media screen and (max-width: 991px) {
	.error-page-hero {
		padding: 50px 20px;
	}

	.error-page-hero-content h1 {
		font-size: 32px;
	}

	.error-page-hero-content p {
		font-size: 20px;
		line-height: 30px !important;
	}

	.error-page-content {
		padding: 50px 20px;
	}

	.error-page-box {
		flex-direction: column;
		gap: 32px;
		text-align: center;
	}

	.error-page-visual {
		flex: 0 0 auto;
	}

	.error-page-details p {
		max-width: none;
	}

	.error-page-actions {
		justify-content: center;
	}
}

@media screen and (max-width: 767px) {
	.error-page-hero-content h1 {
		font-size: 26px;
	}

	.error-page-hero-content span {
		font-size: 20px;
	}

	.error-page-details h2 {
		font-size: 26px;
	}

	.error-page-details p {
		font-size: 16px;
		line-height: 26px !important;
	}
}

/* Create provider account Css End */
