/**
 * AnteEnti Secure Login Page
 */

.anteenti-qa-page-login .site-content,
.anteenti-login-page {
	background: #f8f1e6;
}

.anteenti-login-page {
	min-height: calc(100vh - 120px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 42px 16px 96px;
	font-family: "Anek Telugu", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.anteenti-login-card {
	width: min(100%, 460px);
	background: #fffaf2;
	border: 1px solid rgba(105, 61, 22, 0.16);
	border-radius: 28px;
	box-shadow: 0 18px 45px rgba(76, 43, 17, 0.12);
	padding: 30px;
}

.anteenti-login-brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 6px 14px;
	border-radius: 999px;
	background: #fff2d7;
	border: 1px solid rgba(128, 67, 21, 0.14);
	color: #8b1f24;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.anteenti-login-title {
	margin: 18px 0 6px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 900;
	color: #1f1712;
}

.anteenti-login-subtitle,
.anteenti-login-note {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: #67564b;
}

.anteenti-login-note {
	margin-top: 16px;
	font-size: 14px;
}

.anteenti-login-form {
	margin-top: 22px;
}

.anteenti-google-login {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

.anteenti-google-login .g_id_signin {
	width: 100%;
	max-width: 360px;
}

.anteenti-login-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 18px 0 2px;
	color: #8a7668;
	font-size: 13px;
	font-weight: 800;
}

.anteenti-login-divider::before,
.anteenti-login-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(108, 70, 32, 0.16);
}

.anteenti-login-divider span {
	white-space: nowrap;
}

.anteenti-login-label {
	display: block;
	margin: 16px 0 7px;
	font-size: 15px;
	font-weight: 800;
	color: #35251d;
}

.anteenti-login-input {
	width: 100%;
	min-height: 50px;
	border: 1px solid rgba(108, 70, 32, 0.22);
	border-radius: 16px;
	background: #fff;
	padding: 11px 14px;
	font-size: 16px;
	font-weight: 600;
	color: #201713;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.anteenti-login-input:focus {
	border-color: #8b1f24;
	box-shadow: 0 0 0 4px rgba(139, 31, 36, 0.1);
}

.anteenti-login-remember {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 18px 0;
	font-size: 15px;
	font-weight: 700;
	color: #4a382d;
}

.anteenti-login-button,
.anteenti-login-link-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	border: 0;
	border-radius: 999px;
	padding: 12px 18px;
	text-decoration: none;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.2;
	cursor: pointer;
}

.anteenti-login-button {
	background: #169653;
	color: #fff;
	box-shadow: 0 10px 24px rgba(22, 150, 83, 0.24);
}

.anteenti-login-button:hover,
.anteenti-login-button:focus {
	background: #118346;
	color: #fff;
}

.anteenti-login-link-button {
	background: #fff4df;
	color: #8b1f24;
	border: 1px solid rgba(139, 31, 36, 0.18);
}

.anteenti-login-actions-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 20px;
}

.anteenti-login-error,
.anteenti-login-success {
	margin-top: 18px;
	border-radius: 18px;
	padding: 12px 14px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.5;
}

.anteenti-login-error {
	background: #fff0f0;
	border: 1px solid rgba(175, 35, 45, 0.18);
	color: #8b1f24;
}

.anteenti-login-success {
	background: #ecfff4;
	border: 1px solid rgba(22, 150, 83, 0.2);
	color: #0f7040;
}

.anteenti-login-hp {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 520px) {
	.anteenti-login-page {
		align-items: flex-start;
		padding-top: 18px;
	}

	.anteenti-login-card {
		border-radius: 24px;
		padding: 22px;
	}

	.anteenti-login-title {
		font-size: 26px;
	}

	.anteenti-login-actions-row {
		grid-template-columns: 1fr;
	}
}

/* Step 162 - Login/register tabs and menu auth links */
.anteenti-auth-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 18px;
	padding: 6px;
	border-radius: 999px;
	background: #fff4df;
	border: 1px solid rgba(108, 70, 32, 0.14);
}

.anteenti-auth-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
	color: #7b4d31;
}

.anteenti-auth-tab:hover,
.anteenti-auth-tab:focus,
.anteenti-auth-tab.is-active {
	background: #8b1f24;
	color: #fffaf2;
}

body.anteenti-qa-ui .anteenti-auth-menu-item > a {
	font-weight: 900;
}

body.anteenti-qa-ui .anteenti-auth-menu-login > a,
body.anteenti-qa-ui .anteenti-auth-menu-register > a,
body.anteenti-qa-ui .anteenti-auth-menu-logout > a {
	border-radius: 999px;
	padding-left: 16px !important;
	padding-right: 16px !important;
}

body.anteenti-qa-ui .anteenti-auth-menu-login > a,
body.anteenti-qa-ui .anteenti-auth-menu-logout > a {
	background: #fff4df;
	color: #8b1f24 !important;
	border: 1px solid rgba(139, 31, 36, 0.18);
}

body.anteenti-qa-ui .anteenti-auth-menu-register > a {
	background: #169653;
	color: #fff !important;
	box-shadow: 0 8px 18px rgba(22, 150, 83, 0.18);
}

@media (max-width: 520px) {
	.anteenti-auth-tabs {
		gap: 6px;
	}

	.anteenti-auth-tab {
		min-height: 40px;
		font-size: 14px;
	}
}
