/*
 * Product landing (front page) — aligned with /painel/entrar shell (admin.css).
 *
 * @package TaticaWeddingTheme
 */

body.tws-saas-login-page.tws-product-landing-page {
	margin: 0;
	color: #201f1d;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 38%),
		#faf8f5;
}

.tws-saas-login {
	display: grid;
	min-height: 100vh;
	padding: 24px;
	place-items: center;
}

.tws-saas-login__card {
	width: min(100%, 460px);
	padding: clamp(32px, 6vw, 56px);
	background: #fffdf9;
	border: 1px solid #ded8cf;
	border-radius: 4px;
	box-shadow: 0 24px 60px rgba(32, 31, 29, 0.08);
}

.tws-saas-login__eyebrow {
	margin: 0;
	color: #6f6a63;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.tws-saas-login h1 {
	margin: 10px 0 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(36px, 8vw, 56px);
	font-weight: 500;
	line-height: 0.96;
	letter-spacing: -0.04em;
}

.tws-saas-login__description {
	margin: 18px 0 0;
	color: #6f6a63;
	font-size: 15px;
	line-height: 1.7;
}

.tws-saas-login__actions {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.tws-saas-login__btn {
	align-items: center;
	box-sizing: border-box;
	display: inline-flex;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border-radius: 999px;
	font: inherit;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
	width: 100%;
}

.tws-saas-login__btn--primary {
	background: #201f1d;
	border: 1px solid #201f1d;
	color: #fffdf9;
}

.tws-saas-login__btn--primary:hover,
.tws-saas-login__btn--primary:focus {
	background: #3a3835;
	border-color: #3a3835;
	color: #fffdf9;
}

.tws-saas-login__btn--ghost {
	background: transparent;
	border: 1px solid #201f1d;
	color: #201f1d;
}

.tws-saas-login__btn--ghost:hover,
.tws-saas-login__btn--ghost:focus {
	background: rgba(32, 31, 29, 0.06);
	color: #201f1d;
}

.tws-saas-login__btn:focus-visible {
	box-shadow: 0 0 0 2px rgba(32, 31, 29, 0.18);
	outline: none;
}

@media (min-width: 480px) {
	.tws-saas-login__actions {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.tws-saas-login__actions--single {
		grid-template-columns: 1fr;
		max-width: 280px;
		margin-left: auto;
		margin-right: auto;
	}
}
