/**
 * Sign-in page styles.
 *
 * @package kadence-child-new
 */

body.fb-signin-page {
	margin: 0;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #1f2933;
}

body.fb-signin-page #wpadminbar {
	display: none !important;
}

html.fb-signin-page {
	margin-top: 0 !important;
}

.fb-signin-toast-root {
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: min(360px, calc(100vw - 32px));
	pointer-events: none;
}

.fb-signin-toast {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
	background: #fff;
	border: 1px solid #e5e7eb;
	opacity: 0;
	transform: translateX(16px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: auto;
}

.fb-signin-toast.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.fb-signin-toast--error {
	border-color: rgba(255, 44, 44, 0.35);
	background: rgba(255, 44, 44, 0.08);
}

.fb-signin-toast--error .fb-signin-toast__icon {
	background: rgba(255, 44, 44, 0.15);
	color: #ff2c2c;
}

.fb-signin-toast--error .fb-signin-toast__icon::before {
	content: "!";
}

.fb-signin-toast--error .fb-signin-toast__text {
	color: #ff2c2c;
}

.fb-signin-toast--error .fb-signin-toast__close {
	color: #ff2c2c;
}

.fb-signin-toast--error .fb-signin-toast__close:hover,
.fb-signin-toast--error .fb-signin-toast__close:focus,
.fb-signin-toast--error .fb-signin-toast__close:focus-visible {
	color: #ff2c2c;
	background: transparent;
	opacity: 1;
	box-shadow: none;
}

.fb-signin-toast--success {
	border-color: rgba(0, 128, 0, 0.35);
	background: rgba(0, 128, 0, 0.08);
}

.fb-signin-toast--success .fb-signin-toast__icon {
	background: rgba(0, 128, 0, 0.15);
	color: #008000;
}

.fb-signin-toast--success .fb-signin-toast__icon::before {
	content: "\2713";
}

.fb-signin-toast--success .fb-signin-toast__text {
	color: #008000;
}

.fb-signin-toast--success .fb-signin-toast__close {
	color: #008000;
}

.fb-signin-toast--success .fb-signin-toast__close:hover,
.fb-signin-toast--success .fb-signin-toast__close:focus,
.fb-signin-toast--success .fb-signin-toast__close:focus-visible {
	color: #008000;
	background: transparent;
	opacity: 1;
	box-shadow: none;
}

.fb-signin-toast__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.fb-signin-toast__text {
	flex: 1;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 500;
	padding-top: 4px;
}

.fb-signin-toast__close {
	border: 0;
	background: transparent;
	font-size: 20px;
	line-height: 1;
	padding: 0;
	cursor: pointer;
	opacity: 0.65;
	box-shadow: none;
	outline: none;
}

.fb-signin-toast__close:hover,
.fb-signin-toast__close:focus,
.fb-signin-toast__close:focus-visible {
	opacity: 1;
	box-shadow: none;
}

.fb-signin {
	min-height: 100vh;
	background: #fff;
	font-family: inherit;
}

.fb-signin__row {
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
}

.fb-signin__brand {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 0 0 35%;
	width: 35%;
	max-width: 35%;
	background-color: #003d2d;
	background-image: url("../images/green-left-background.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #fff;
}

.fb-signin__brand-inner {
	padding: 40px 36px;
	flex: 1;
	max-width: 400px;
}

.fb-signin__logo {
	margin-bottom: 40px;
}

.fb-signin__logo-img {
	display: block;
	width: 240px;
	max-width: 100%;
	height: auto;
}

.fb-signin__welcome {
	margin: 0 0 10px;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.3;
}

.fb-signin__title {
	margin: 0 0 14px;
	font-size: 44px;
	line-height: 1.12;
	font-weight: 700;
	color: #f5a623;
}

.fb-signin__intro {
	margin: 0 0 36px;
	font-size: 24px;
	line-height: 1.45;
	opacity: 0.92;
}

.fb-signin__features {
	list-style: none;
	margin: 0 0 36px;
	padding: 0;
}

.fb-signin__features li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.fb-signin__features li + li {
	margin-top: 24px;
}

.fb-signin__features li strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 2px;
}

.fb-signin__features li span {
	display: block;
	font-size: 13px;
	opacity: 0.88;
	line-height: 1.35;
}

.fb-signin__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-top: 2px;
	color: #7cb342;
	flex-shrink: 0;
}

.fb-signin__feature-icon svg {
	width: 24px;
	height: 24px;
}

.fb-signin__help {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	font-size: 13px;
}

.fb-signin__help p {
	margin: 0 0 6px;
	line-height: 1.4;
}

.fb-signin__help a {
	display: block;
	color: #f5a623;
	text-decoration: none;
	font-weight: 400;
	margin-bottom: 4px;
}

.fb-signin__help a:hover {
	text-decoration: underline;
}

.fb-signin__help span {
	display: block;
	opacity: 0.92;
}

.fb-signin__help strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 6px;
}

.fb-signin__help-content {
	flex: 1;
	min-width: 0;
}

.fb-signin__help-icon {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-top: 2px;
	border-radius: 50%;
	background: #228703;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
}

.fb-signin__brand-strip {
	height: 10px;
	background: #f7b500;
}

.fb-signin__main {
	display: flex;
	flex-direction: column;
	flex: 0 0 65%;
	width: 65%;
	max-width: 65%;
	min-height: 100vh;
	background: #fff;
}

.fb-signin__lang-wrap {
	display: flex;
	justify-content: flex-end;
	padding: 24px 48px 0;
}

.fb-signin__lang {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	font-size: 16px;
	font-weight: 700;
	color: #1a3d32;
	cursor: pointer;
}

.fb-signin__lang:hover,
.fb-signin__lang:focus,
.fb-signin__lang:focus-visible,
.fb-signin__lang:active {
	color: #1a3d32;
	background: transparent;
	border: none;
}

.fb-signin__lang svg {
	flex-shrink: 0;
}

.fb-signin__content {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 48px;
}

.fb-signin__panel {
	width: 100%;
	max-width: 480px;
}

.fb-signin__panel h2 {
	margin: 0 0 12px;
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: #1a3d32;
}

.fb-signin__subtitle {
	margin: 0 0 28px;
	text-align: center;
	font-size: 18px;
	line-height: 1.5;
	color: #6b7280;
}

.fb-signin__provider {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 52px;
	padding: 0 18px;
	margin-bottom: 12px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: #fff;
	font-size: 16px;
	font-weight: 500;
	color: #111827;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.fb-signin__provider:hover,
.fb-signin__provider:focus,
.fb-signin__provider:focus-visible,
.fb-signin__provider:active {
	color: #23620f;
	background: #f9fafb;
	border-color: #c4cbd3;
	text-decoration: none;
}

.fb-signin__provider--disabled {
	cursor: not-allowed;
	opacity: 0.65;
}

.fb-signin__provider:hover .fb-signin__provider-left,
.fb-signin__provider:focus .fb-signin__provider-left,
.fb-signin__provider:focus-visible .fb-signin__provider-left,
.fb-signin__provider:active .fb-signin__provider-left {
	color: #23620f;
}

.fb-signin__provider-left {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.fb-signin__microsoft {
	margin-bottom: 12px;
}

.fb-signin__microsoft-toggle {
	margin-bottom: 0;
}

.fb-signin__microsoft-toggle-meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.fb-signin__microsoft-chevron {
	flex-shrink: 0;
	color: #6b7280;
	transition: transform 0.2s ease;
}

.fb-signin__microsoft.is-open .fb-signin__microsoft-chevron {
	transform: rotate(180deg);
}

.fb-signin__microsoft.is-open .fb-signin__microsoft-toggle {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	margin-bottom: 0;
}

.fb-signin__microsoft-choices {
	display: flex;
	flex-direction: column;
	border: 1px solid #d1d5db;
	border-top: 0;
	border-radius: 0 0 8px 8px;
	overflow: hidden;
	background: #fff;
}

.fb-signin__microsoft-choice {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 18px;
	text-decoration: none;
	color: #111827;
	background: #fff;
	border-top: 1px solid #e5e7eb;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.fb-signin__microsoft-choice:first-child {
	border-top: 0;
}

.fb-signin__microsoft-choice:hover,
.fb-signin__microsoft-choice:focus,
.fb-signin__microsoft-choice:focus-visible {
	background: #f9fafb;
	color: #23620f;
	text-decoration: none;
}

.fb-signin__microsoft-choice-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.fb-signin__microsoft-choice-hint {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	color: #6b7280;
}

.fb-signin__microsoft-choice:hover .fb-signin__microsoft-choice-hint,
.fb-signin__microsoft-choice:focus .fb-signin__microsoft-choice-hint,
.fb-signin__microsoft-choice:focus-visible .fb-signin__microsoft-choice-hint {
	color: #4b5563;
}

.fb-signin__provider-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	line-height: 1.25;
}

.fb-signin__provider-hint {
	font-size: 12px;
	font-weight: 400;
	color: #6b7280;
}

.fb-signin__provider--microsoft-personal {
	min-height: 52px;
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

.fb-signin__badge {
	padding: 4px 10px;
	border-radius: 999px;
	background: #e3f0e3;
	color: #1f5c1f;
	font-size: 12px;
	font-weight: 600;
}

.fb-signin__divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 20px 0;
	color: #6b7280;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.fb-signin__divider::before,
.fb-signin__divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e5e7eb;
}

.fb-signin__email-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.fb-signin__password-wrap {
	position: relative;
	width: 100%;
}

.fb-signin__password-wrap .fb-signin__input {
	padding-right: 3.25rem;
}

.fb-signin__password-toggle {
	position: absolute;
	top: 50%;
	right: 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent !important;
	background-color: transparent !important;
	color: #6b7280;
	cursor: pointer;
	transform: translateY(-50%);
	-webkit-tap-highlight-color: transparent;
	box-shadow: none !important;
	transition: color 0.15s ease;
}

.fb-signin-page button.fb-signin__password-toggle:hover,
.fb-signin-page button.fb-signin__password-toggle:focus,
.fb-signin-page button.fb-signin__password-toggle:focus-visible,
.fb-signin-page button.fb-signin__password-toggle:active,
.fb-signin-page button.fb-signin__password-toggle.is-visible {
	background: transparent !important;
	background-color: transparent !important;
	border-color: transparent !important;
	box-shadow: none !important;
	color: #23620f !important;
}

.fb-signin-page button.fb-signin__password-toggle:focus-visible {
	outline: 2px solid rgba(35, 98, 15, 0.35);
	outline-offset: 2px;
}

.fb-signin__password-toggle i {
	font-size: 1.125rem;
	line-height: 1;
	pointer-events: none;
}

.fb-signin-page .fb-signin__email-form .fb-signin__input,
.fb-signin-page .fb-signin__input[type="email"],
.fb-signin-page .fb-signin__input[type="password"],
.fb-signin-page .fb-signin__password-wrap .fb-signin__input[type="text"] {
	width: 100%;
	min-height: 52px;
	padding: 14px 24px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: #fff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: #111827;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fb-signin__input {
	box-sizing: border-box;
}

.fb-signin__input::placeholder {
	color: #9ca3af;
	font-weight: 400;
}

.fb-signin__input:hover {
	border-color: #c4cbd3;
}

.fb-signin__input:focus {
	outline: none;
	border-color: #23620f;
	box-shadow: 0 0 0 3px rgba(35, 98, 15, 0.12);
}

.fb-signin__input--error {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.fb-signin__options {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 2px 0 4px;
}

.fb-signin__forgot {
	flex-shrink: 0;
	margin-left: auto;
	font-size: 14px;
	font-weight: 600;
	color: #23620f;
	text-decoration: none;
}

.fb-signin__forgot:hover,
.fb-signin__forgot:focus,
.fb-signin__forgot:focus-visible {
	color: #1a3d32;
	text-decoration: underline;
}

.fb-signin__verify {
	margin: 0 0 16px;
	padding: 14px 16px;
	border: 1px solid #f5d08a;
	border-radius: 10px;
	background: #fffbeb;
	text-align: center;
}

.fb-signin__verify-text {
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.5;
	color: #92400e;
}

.fb-signin__verify-resend {
	display: inline-block;
	margin: 0 auto;
	padding: 0;
	border: 0;
	background: none;
	background-color: transparent;
	box-shadow: none;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	color: #23620f;
	text-decoration: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.fb-signin__verify-resend:hover,
.fb-signin__verify-resend:focus,
.fb-signin__verify-resend:focus-visible,
.fb-signin__verify-resend:active {
	background: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
	color: #1a3d32;
	text-decoration: underline;
}

.fb-signin__verify-resend:disabled,
.fb-signin__verify-resend[aria-disabled="true"] {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

.fb-signin__remember {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	cursor: pointer;
	user-select: none;
}

.fb-signin__remember input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: #23620f;
	cursor: pointer;
}

.fb-signin__back-link {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
}

.fb-signin__back-link a {
	color: #23620f;
	text-decoration: none;
}

.fb-signin__back-link a:hover,
.fb-signin__back-link a:focus,
.fb-signin__back-link a:focus-visible {
	color: #1a3d32;
	text-decoration: underline;
}

.fb-signin__submit {
	width: 100%;
	height: 52px;
	margin-top: 4px;
	padding: 0 18px;
	border: 1px solid #1a3d32;
	border-radius: 8px;
	background: #1a3d32;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.fb-signin__submit:hover,
.fb-signin__submit:focus,
.fb-signin__submit:focus-visible {
	background: #23620f;
	border-color: #23620f;
	color: #fff;
}

.fb-signin-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 61, 45, 0.58);
	backdrop-filter: blur(2px);
}

.fb-signin-overlay[hidden] {
	display: none !important;
}

body.fb-signin-overlay-open {
	overflow: hidden;
}

.fb-signin-overlay__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-width: 240px;
	max-width: 320px;
	padding: 32px 36px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
	text-align: center;
}

.fb-signin-overlay__spinner {
	width: 44px;
	height: 44px;
	border: 3px solid rgba(35, 98, 15, 0.18);
	border-top-color: #23620f;
	border-radius: 50%;
	animation: fb-signin-spin 0.75s linear infinite;
}

.fb-signin-overlay__text {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: #1a3d32;
}

@keyframes fb-signin-spin {
	to {
		transform: rotate(360deg);
	}
}

.fb-signin__support {
	margin-top: 28px;
	text-align: center;
	font-size: 16px;
	color: #6b7280;
}

.fb-signin__support p {
	margin: 0;
	line-height: 1.5;
}

.fb-signin__support-title {
	margin-bottom: 8px !important;
	font-size: 18px;
	font-weight: 700;
	color: #1a3d32;
}

.fb-signin__support a {
	color: #23620f;
	font-weight: 600;
	text-decoration: none;
}

.fb-signin__support a:hover {
	text-decoration: underline;
}

.fb-signin__legal {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 24px;
	background: #eef2f3;
	border-top: 1px solid #dde3e8;
	color: #6b7280;
}

.fb-signin__legal svg {
	color: #23620f;
	flex-shrink: 0;
}

.fb-signin__legal-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #c3c6cb;
	flex-shrink: 0;
}

.fb-signin__legal-icon svg {
	width: 14px;
	height: 14px;
}

.fb-signin__legal p {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

.fb-signin__legal a {
	color: #23620f;
	font-weight: 600;
	text-decoration: none;
}

.fb-signin__legal a:hover {
	text-decoration: underline;
}

@media (max-width: 991.98px) {
	.fb-signin__brand,
	.fb-signin__main {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
	}

	.fb-signin__brand-inner,
	.fb-signin__lang-wrap,
	.fb-signin__content {
		padding: 32px 24px;
	}

	.fb-signin__title {
		font-size: 36px;
	}

	.fb-signin__welcome {
		font-size: 24px;
	}

	.fb-signin__intro {
		font-size: 18px;
	}
}


.fb-signin__providers {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 4px;
}

.fb-signin__sso-note {
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 8px;
	background: #f3f6f3;
	border: 1px solid #d8e6d8;
	font-size: 14px;
	line-height: 1.5;
	color: #4b5563;
	text-align: center;
}

.fb-signin__microsoft-alt {
	margin: -4px 0 12px;
	font-size: 13px;
	line-height: 1.4;
	text-align: center;
}

.fb-signin__microsoft-alt a {
	color: #4b5563;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.fb-signin__microsoft-alt a:hover,
.fb-signin__microsoft-alt a:focus {
	color: #1f2937;
}
