/**
 * Xero Auto Interest Auth Styles
 */

[role="banner"],
[role="contentinfo"],
#masthead,
#colophon,
.site-header,
.site-footer,
.wp-site-blocks > header.wp-block-template-part,
.wp-site-blocks > footer.wp-block-template-part {
	display: none !important;
}

main,
#primary,
.site-main {
	padding: 32px 16px;
}

.xero-auth-shell {
	max-width: 520px;
	margin: 0 auto;
	padding: 32px 0 48px;
}

.xero-auth-card {
	padding: 32px;
	border: 1px solid #dcdcde;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 10px 32px rgba(17, 24, 39, 0.08);
}

.xero-auth-eyebrow {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0a4b78;
    text-align: center;
}

h1.wp-block-post-title {
    display: none;
}

.xero-auth-title {
	margin: 20px 0px;
	font-size: 26px;
	line-height: 1.25;
	color: #0a4b78;
    text-align: center;
    font-weight: 500;
}

.xero-auth-intro {
	margin: 0 0 24px;
	color: #4b5563;
	line-height: 1.6;
    font-size: 20px;
    text-align: center;
}

.xero-state-banner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	border: 1px solid #dcdcde;
	background: #f6f7f7;
}

.xero-state-banner p {
	margin: 0;
	color: #1d2327;
	line-height: 1.5;
    font-size: 18px;
}

.xero-state-banner.is-error {
	background: #fbeaea;
	border-color: #dc3232;
}

.xero-state-banner.is-info {
	background: #e8f4ff;
	border-color: #13b5ea;
}

.xero-auth-form {
	display: grid;
	gap: 16px;
}

.xero-auth-field {
	display: grid;
	gap: 8px;
}

.xero-auth-field label,
.xero-auth-checkbox {
	font-weight: 600;
	color: #111827;
}

.xero-auth-field input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #c3c4c7;
	border-radius: 8px;
	font-size: 18px;
	line-height: 1.4;
	background: #ffffff;
	color: #111827;
    box-sizing: border-box;
}

.xero-auth-field input:focus {
	outline: 2px solid #13b5ea;
	outline-offset: 2px;
	border-color: #13b5ea;
}

.xero-auth-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	color: #4b5563;
    font-size: 18px;
}

.xero-auth-checkbox input {
	margin: 0;
	width: 16px;
	height: 16px;
}

.xero-auth-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 12px 18px;
	border: 1px solid #13b5ea;
	border-radius: 8px;
	background: #13b5ea;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.xero-auth-button:hover,
.xero-auth-button:focus {
	background: #0e8dbd;
	border-color: #0e8dbd;
	color: #ffffff;
}

.xero-auth-links {
	margin-top: 20px;
	text-align: center;
}

.xero-auth-links p {
	margin: 0;
	color: #4b5563;
	font-size: 18px;
	line-height: 1.5;
}

.xero-auth-links a {
	color: #0a4b78;
	text-decoration: none;
	font-weight: 600;
    font-size: 18px;
}

.xero-auth-links a:hover,
.xero-auth-links a:focus {
	text-decoration: underline;
}

@media (max-width: 640px) {
	.xero-auth-shell {
		padding: 16px 0 32px;
	}

	.xero-auth-card {
		padding: 24px 20px;
	}

	.xero-auth-title {
		font-size: 28px;
	}
}