#bhb-booking-root,
#bhb-subscriptions-root,
#bhb-my-account-root,
#bhb-oa-booking-root {
	/* Palette mirrors the Beautyhouse Rotterdam theme's design tokens
	   (assets/css/theme.css / theme.json) so the widget reads as part of
	   the site rather than a bolted-on plugin. */
	--bhb-primary: #7A2E35;
	--bhb-primary-dark: #5A2028;
	--bhb-primary-light: rgba(122, 46, 53, 0.08);
	--bhb-ink: #171110;
	--bhb-muted: #6B5E56;
	--bhb-bg: #FBF8F2;
	--bhb-surface: #ffffff;
	--bhb-border: rgba(23, 17, 16, 0.1);
	--bhb-success: #3F5744;
	--bhb-success-bg: rgba(63, 87, 68, 0.12);
	--bhb-danger: #7A2E35;
	--bhb-danger-bg: rgba(122, 46, 53, 0.08);
	--bhb-radius-sm: 14px;
	--bhb-radius: 20px;
	--bhb-radius-lg: 30px;
	--bhb-shadow-sm: 0 4px 14px rgba(23, 17, 16, 0.06);
	--bhb-shadow-md: 0 24px 60px rgba(23, 17, 16, 0.12);

	max-width: 640px;
	margin: 0 auto;
	font-family: inherit;
	color: var(--bhb-ink);
}

@media (prefers-color-scheme: dark) {
	#bhb-booking-root,
	#bhb-subscriptions-root,
	#bhb-my-account-root,
	#bhb-oa-booking-root {
		--bhb-ink: #F7F2EA;
		--bhb-muted: #C9BEB6;
		--bhb-bg: #241A18;
		--bhb-surface: #2D2220;
		--bhb-border: rgba(247, 242, 234, 0.12);
		--bhb-primary-light: rgba(122, 46, 53, 0.28);
		--bhb-success-bg: rgba(63, 87, 68, 0.28);
		--bhb-danger-bg: rgba(122, 46, 53, 0.28);
		--bhb-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
		--bhb-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
		/* The root itself has no background elsewhere, so widget chrome
		   that sits outside .bhb-panel (e.g. .bhb-stepper, above the panel)
		   was rendering its dark-mode text tokens directly on the page's
		   own — always light — background, killing contrast. Giving the
		   root the same dark surface the panel already gets fixes that
		   without touching any light-mode rule. */
		background: var(--bhb-bg);
	}
}

#bhb-booking-root *,
#bhb-subscriptions-root *,
#bhb-my-account-root *,
#bhb-oa-booking-root * {
	box-sizing: border-box;
}

#bhb-booking-root h3,
#bhb-subscriptions-root h3,
#bhb-my-account-root h3,
#bhb-oa-booking-root h3 {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 0 0 16px;
	color: var(--bhb-ink);
}

/* ---------- Stepper ---------- */

.bhb-stepper {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}

.bhb-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	font-size: 12px;
	font-weight: 600;
	color: var(--bhb-muted);
	text-align: center;
}

.bhb-step::before {
	content: "";
	position: absolute;
	top: 11px;
	left: -50%;
	width: 100%;
	height: 2px;
	background: var(--bhb-border);
	z-index: 0;
}

.bhb-step:first-child::before {
	display: none;
}

.bhb-step-dot {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--bhb-surface);
	border: 2px solid var(--bhb-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	color: var(--bhb-muted);
	position: relative;
	z-index: 1;
	transition: all 0.2s ease;
}

.bhb-step.done .bhb-step-dot {
	background: var(--bhb-primary);
	border-color: var(--bhb-primary);
	color: #fff;
}

.bhb-step.done::before {
	background: var(--bhb-primary);
}

.bhb-step.active .bhb-step-dot {
	border-color: var(--bhb-primary);
	color: var(--bhb-primary);
}

.bhb-step.active {
	color: var(--bhb-ink);
}

/* ---------- Panel / fade transition ---------- */

.bhb-panel {
	animation: bhb-fade-up 0.25s ease;
	background: var(--bhb-surface);
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius-lg);
	box-shadow: var(--bhb-shadow-md);
	padding: clamp(22px, 4vw, 36px);
}

@keyframes bhb-fade-up {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ---------- Cards grid (services / employees) ---------- */

.bhb-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 12px;
	margin: 4px 0 20px;
}

.bhb-card {
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius);
	padding: 16px;
	background: var(--bhb-surface);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: left;
	transition: all 0.15s ease;
	font-family: inherit;
}

.bhb-card:hover {
	border-color: var(--bhb-primary);
	box-shadow: var(--bhb-shadow-sm);
	transform: translateY(-2px);
}

.bhb-card strong {
	font-size: 14.5px;
	color: var(--bhb-ink);
}

.bhb-card span {
	font-size: 12.5px;
	color: var(--bhb-muted);
}

.bhb-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bhb-primary-light);
	color: var(--bhb-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	flex: none;
}

.bhb-card-icon {
	width: 36px;
	height: 36px;
	border-radius: var(--bhb-radius-sm);
	background: var(--bhb-primary-light);
	color: var(--bhb-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 15px;
	flex: none;
}

.bhb-loading,
.bhb-empty-state {
	color: var(--bhb-muted);
	font-size: 13.5px;
	padding: 20px 0;
}

/* ---------- Date + slots ---------- */

#bhb-booking-root input[type="date"] {
	padding: 10px 14px;
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius-sm);
	background: var(--bhb-surface);
	color: var(--bhb-ink);
	font-family: inherit;
	font-size: 14px;
	margin-bottom: 18px;
}

#bhb-booking-root input[type="date"]:focus {
	outline: none;
	border-color: var(--bhb-primary);
	box-shadow: 0 0 0 3px var(--bhb-primary-light);
}

.bhb-slot-group {
	margin-bottom: 16px;
}

.bhb-slot-group-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--bhb-muted);
	margin-bottom: 8px;
}

.bhb-slot-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bhb-slot {
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius-sm);
	padding: 9px 14px;
	background: var(--bhb-surface);
	color: var(--bhb-ink);
	cursor: pointer;
	font-size: 13.5px;
	font-weight: 600;
	font-family: inherit;
	transition: all 0.15s ease;
}

.bhb-slot:hover {
	border-color: var(--bhb-primary);
	color: var(--bhb-primary-dark);
}

.bhb-slot.selected {
	background: var(--bhb-primary);
	border-color: var(--bhb-primary);
	color: #fff;
}

/* ---------- Back link ---------- */

.bhb-back {
	background: none;
	border: none;
	color: var(--bhb-muted);
	cursor: pointer;
	margin-top: 6px;
	padding: 8px 0;
	font-size: 13.5px;
	font-weight: 600;
	font-family: inherit;
}

.bhb-back:hover {
	color: var(--bhb-primary-dark);
}

/* ---------- Cascading inline sections (step 1) ---------- */

.bhb-inline-section {
	border-top: 1px solid var(--bhb-border);
	padding: 18px 0;
}

.bhb-inline-section:first-child {
	border-top: none;
	padding-top: 0;
}

.bhb-inline-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 4px;
}

.bhb-inline-num {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--bhb-primary-light);
	color: var(--bhb-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex: none;
}

.bhb-inline-title {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--bhb-ink);
	flex: 1;
}

.bhb-inline-summary {
	align-items: center;
	gap: 10px;
}

.bhb-inline-summary-value {
	font-size: 13.5px;
	color: var(--bhb-muted);
}

.bhb-inline-change {
	background: none;
	border: none;
	color: var(--bhb-primary-dark);
	font-size: 12.5px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	font-family: inherit;
}

.bhb-inline-body {
	margin-left: 34px;
}

.bhb-inline-body input[type="date"] {
	margin-top: 4px;
}

/* ---------- Custom select (category / service / employee) ---------- */

.bhb-select {
	position: relative;
	max-width: 420px;
}

.bhb-select-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius-sm);
	background: var(--bhb-surface);
	color: var(--bhb-ink);
	font-family: inherit;
	font-size: 14px;
	cursor: pointer;
	text-align: left;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bhb-select-trigger:hover {
	border-color: var(--bhb-primary);
}

.bhb-select-trigger.open {
	border-color: var(--bhb-primary);
	box-shadow: 0 0 0 3px var(--bhb-primary-light);
}

.bhb-select-trigger-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bhb-select-arrow {
	color: var(--bhb-muted);
	font-size: 12px;
	flex: none;
	transition: transform 0.15s ease;
}

.bhb-select-trigger.open .bhb-select-arrow {
	transform: rotate(180deg);
}

.bhb-select-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 20;
	background: var(--bhb-surface);
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius);
	box-shadow: var(--bhb-shadow-md);
	max-height: 300px;
	overflow-y: auto;
	padding: 6px;
}

.bhb-select-option {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 9px 10px;
	border: none;
	border-radius: var(--bhb-radius-sm);
	background: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
}

.bhb-select-option:hover {
	background: var(--bhb-bg);
}

.bhb-select-option-icon {
	width: 30px;
	height: 30px;
	border-radius: 10px;
	background: var(--bhb-primary-light);
	color: var(--bhb-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 12px;
	flex: none;
}

.bhb-select-option-text {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.bhb-select-option-text strong {
	font-size: 13.5px;
	color: var(--bhb-ink);
	font-weight: 600;
}

.bhb-select-option-text span {
	font-size: 12px;
	color: var(--bhb-muted);
}

/* ---------- Details form ---------- */

.bhb-details-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bhb-details-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--bhb-muted);
}

.bhb-details-form input,
.bhb-details-form select,
.bhb-details-form textarea {
	padding: 10px 13px;
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius-sm);
	background: var(--bhb-surface);
	color: var(--bhb-ink);
	font-family: inherit;
	font-size: 14px;
}

.bhb-details-form input:focus,
.bhb-details-form select:focus,
.bhb-details-form textarea:focus {
	outline: none;
	border-color: var(--bhb-primary);
	box-shadow: 0 0 0 3px var(--bhb-primary-light);
}

.bhb-details-form input.invalid,
.bhb-details-form select.invalid {
	border-color: var(--bhb-danger);
}

.bhb-details-form input.invalid:focus,
.bhb-details-form select.invalid:focus {
	box-shadow: 0 0 0 3px var(--bhb-danger-bg);
}

.bhb-oa-field-hint {
	font-size: 12px;
	font-weight: 400;
	color: var(--bhb-muted);
}

.bhb-oa-field-hint.invalid {
	color: var(--bhb-danger);
	font-weight: 600;
}

.bhb-submit {
	margin-top: 4px;
	padding: 14px 28px;
	background: linear-gradient(135deg, var(--bhb-primary) 0%, var(--bhb-primary-dark) 100%);
	color: #fff;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	width: 100%;
	font-size: 14.5px;
	font-weight: 700;
	font-family: inherit;
	box-shadow: 0 18px 28px rgba(122, 46, 53, 0.18);
	transition: transform 0.25s cubic-bezier(.22,.9,.32,1), box-shadow 0.25s cubic-bezier(.22,.9,.32,1);
}

.bhb-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 38px rgba(122, 46, 53, 0.24);
}

.bhb-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.bhb-oa-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 20px;
	max-width: 420px;
}

.bhb-oa-cal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.bhb-oa-cal-header strong {
	font-size: 14px;
	color: var(--bhb-ink);
	text-transform: capitalize;
}

.bhb-oa-cal-nav {
	background: none;
	border: 1px solid var(--bhb-border);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	cursor: pointer;
	color: var(--bhb-ink);
	font-size: 15px;
	font-family: inherit;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.15s ease;
}

.bhb-oa-cal-nav:hover:not(:disabled) {
	border-color: var(--bhb-primary);
	color: var(--bhb-primary);
}

.bhb-oa-cal-nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.bhb-oa-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	max-width: 420px;
}

.bhb-oa-cal-weekday {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	color: var(--bhb-muted);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding-bottom: 6px;
}

.bhb-oa-cal-day {
	aspect-ratio: 1;
	border: 1px solid transparent;
	border-radius: var(--bhb-radius-sm);
	background: none;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	color: var(--bhb-ink);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s ease;
}

.bhb-oa-cal-day:hover:not(:disabled) {
	border-color: var(--bhb-primary);
	color: var(--bhb-primary-dark);
}

.bhb-oa-cal-day.selected {
	background: var(--bhb-primary);
	border-color: var(--bhb-primary);
	color: #fff;
}

.bhb-oa-cal-day:disabled {
	color: var(--bhb-border);
	cursor: not-allowed;
}

.bhb-oa-cal-day.empty {
	visibility: hidden;
	cursor: default;
}

.bhb-oa-field label {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--bhb-muted);
}

.bhb-oa-field select {
	padding: 10px 13px;
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius-sm);
	background: var(--bhb-surface);
	color: var(--bhb-ink);
	font-family: inherit;
	font-size: 14px;
}

.bhb-oa-field select:focus {
	outline: none;
	border-color: var(--bhb-primary);
	box-shadow: 0 0 0 3px var(--bhb-primary-light);
}

/* Read-only stand-in for the treatment <select>, shown instead of it when a
   visitor arrives via a treatment page's own booking link — same field
   footprint as the select it replaces, just not interactive. */
.bhb-oa-locked-service {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 13px;
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius-sm);
	background: var(--bhb-bg);
	font-size: 14px;
}

.bhb-oa-locked-service strong {
	color: var(--bhb-ink);
	font-weight: 600;
}

.bhb-oa-locked-service span {
	color: var(--bhb-muted);
	font-size: 12.5px;
	flex: none;
}

.bhb-summary {
	background: var(--bhb-bg);
	border: 1px solid var(--bhb-border);
	padding: 14px 18px;
	border-radius: var(--bhb-radius);
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.6;
}

.bhb-summary strong {
	color: var(--bhb-ink);
}

/* ---------- Payment method cards ---------- */

.bhb-payment-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bhb-payment-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border: 1.5px solid var(--bhb-border);
	border-radius: var(--bhb-radius);
	padding: 14px 16px;
	cursor: pointer;
	transition: all 0.15s ease;
	background: var(--bhb-surface);
}

.bhb-payment-card:hover {
	border-color: var(--bhb-primary);
}

.bhb-payment-card.selected {
	border-color: var(--bhb-primary);
	background: var(--bhb-primary-light);
}

.bhb-payment-card input[type="radio"] {
	margin-top: 3px;
	accent-color: var(--bhb-primary);
}

.bhb-payment-card-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--bhb-ink);
}

.bhb-payment-card-note {
	font-size: 12.5px;
	color: var(--bhb-muted);
	margin-top: 2px;
}

.bhb-error {
	color: var(--bhb-danger);
	background: var(--bhb-danger-bg);
	border-radius: var(--bhb-radius-sm);
	padding: 10px 14px;
	font-size: 13.5px;
	margin: 0;
}

/* ---------- Confirmation ---------- */

.bhb-confirmed {
	text-align: center;
	padding: 48px 20px;
}

.bhb-confirmed-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--bhb-success-bg);
	color: var(--bhb-success);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	font-size: 28px;
}

.bhb-confirmed h3 {
	margin-bottom: 8px;
}

.bhb-confirmed p {
	color: var(--bhb-muted);
	max-width: 380px;
	margin: 0 auto;
}

.bhb-payment-note {
	background: var(--bhb-bg);
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius-sm);
	padding: 12px 16px;
	display: inline-block;
	margin-top: 16px;
	font-size: 13.5px;
	color: var(--bhb-ink);
}

/* ---------- Account (login / bookings list) ---------- */

.bhb-account-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.bhb-account-header h3 {
	margin: 0;
}

.bhb-account-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
}

.bhb-account-table th {
	text-align: left;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--bhb-muted);
	padding: 8px 10px;
	border-bottom: 1px solid var(--bhb-border);
}

.bhb-account-table td {
	padding: 10px;
	border-bottom: 1px solid var(--bhb-border);
	color: var(--bhb-ink);
}

.bhb-link-btn {
	background: none;
	border: none;
	color: var(--bhb-primary-dark);
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	padding: 0;
	font-family: inherit;
	text-decoration: underline;
}

button#bhb-oa-switch-to-login {
	margin-top: 15px;
	padding: 14px 28px;
	background: #fff;
	color: #7A2E35;
	border: 1px solid #7A2E35;
	border-radius: 999px;
	cursor: pointer;
	width: 100%;
	font-size: 14.5px;
	font-weight: 600;
	font-family: inherit;
	box-shadow: 0 18px 28px rgba(122, 46, 53, 0.18);
	transition: transform 0.25s cubic-bezier(.22, .9, .32, 1), box-shadow 0.25s cubic-bezier(.22, .9, .32, 1);
	line-height: 1;
}

/* ---------- Account bar (inline login within the booking details step) ---------- */

.bhb-account-bar {
	background: var(--bhb-bg);
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius);
	padding: 14px 18px;
	margin-bottom: 18px;
	font-size: 13.5px;
	color: var(--bhb-ink);
}

.bhb-account-bar-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.bhb-account-bar-inline-form {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bhb-account-bar-inline-form input {
	flex: 1 1 160px;
	padding: 10px 13px;
	border: 1px solid var(--bhb-border);
	border-radius: var(--bhb-radius-sm);
	background: var(--bhb-surface);
	color: var(--bhb-ink);
	font-family: inherit;
	font-size: 14px;
}

.bhb-account-bar-inline-form input:focus {
	outline: none;
	border-color: var(--bhb-primary);
	box-shadow: 0 0 0 3px var(--bhb-primary-light);
}

.bhb-account-bar-inline-form .bhb-submit {
	margin-top: 0;
	flex: 0 0 auto;
}

.bhb-account-bar-links {
	display: flex;
	gap: 16px;
	margin: 10px 0 0;
}

.bhb-oa-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(23, 17, 16, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	z-index: 9999;
}

.bhb-oa-modal {
	background: var(--bhb-surface);
	color: var(--bhb-ink);
	border-radius: var(--bhb-radius);
	box-shadow: var(--bhb-shadow-md);
	padding: 28px;
	max-width: 400px;
	width: 100%;
	font-family: inherit;
}

.bhb-oa-modal h3 {
	margin-top: 0;
}

.bhb-oa-modal-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 4px;
}

.bhb-oa-modal-actions .bhb-submit {
	margin-top: 0;
}

#bhb-oa-switch-to-register {
    margin-top: 4px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--bhb-primary-dark);
    border-radius: 999px;
    cursor: pointer;
    width: fit-content;
    font-size: 14.5px;
    font-weight: 700;
    font-family: inherit;
    box-shadow: 0 18px 28px rgba(122, 46, 53, 0.18);
    transition: transform 0.25s cubic-bezier(.22, .9, .32, 1), box-shadow 0.25s cubic-bezier(.22, .9, .32, 1);
    width: 100%;
    text-decoration: none;
}

#bhb-oa-forgot-password {
    margin: 0 0 24px;
}
