/* Branded login + landing pages (loaded only on those pages). */

:root {
	--gmgt-brand: #0f766e;
	--gmgt-brand-dark: #115e59;
	--gmgt-bg: #0b1220;
	--gmgt-card: #ffffff;
	--gmgt-text: #0f172a;
	--gmgt-muted: #64748b;
}

body.gmgt-auth-body {
	background: radial-gradient(1200px 600px at 50% -10%, #13322f 0%, var(--gmgt-bg) 60%);
	min-height: 100vh;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.gmgt-auth-wrap {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

/* ── Login card ── */
.registration_form_custom_div {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	background: var(--gmgt-card);
	padding: 32px 28px;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.gmgt-remember {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	font-size: 13px;
	color: var(--gmgt-muted);
	margin-bottom: 16px;
}

.gmgt-remember input {
	width: auto;
	margin: 0;
}

.registration_form_custom_div h4,
.gmgt_Child_theme_heder {
	text-align: center;
	margin: 0 0 20px;
	font-size: 22px;
	font-weight: 700;
	color: var(--gmgt-text);
}

.registration_form_custom_div label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	color: var(--gmgt-text);
	margin-bottom: 6px;
}

.registration_form_custom_div input[type="text"],
.registration_form_custom_div input[type="password"],
.registration_form_custom_div input[type="email"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-size: 15px;
	margin-bottom: 16px;
	box-sizing: border-box;
}

.registration_form_custom_div input:focus {
	outline: none;
	border-color: var(--gmgt-brand);
	box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.registration_form_custom_div #wp-submit,
.registration_form_custom_div input[type="submit"] {
	width: 100%;
	padding: 12px 16px;
	background: var(--gmgt-brand);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease;
}

.registration_form_custom_div #wp-submit:hover,
.registration_form_custom_div input[type="submit"]:hover {
	background: var(--gmgt-brand-dark);
}

.registration_form_custom_div .gmgt_chile_theme_forgot_pass,
.registration_form_custom_div a {
	display: inline-block;
	margin-top: 14px;
	color: var(--gmgt-brand);
	text-decoration: none;
	font-size: 13px;
}

.login-error,
#login-error {
	max-width: 420px;
	margin: 16px auto 0;
	background: #fee2e2;
	color: #b91c1c;
	padding: 10px 14px;
	border-radius: 10px;
	text-align: center;
}

.custom-logo,
.custom-logo-link img {
	display: block;
	max-width: 180px;
	height: auto;
	margin: 0 auto 18px;
}

/* ── Landing ── */
/* Light background (logo is black, matches the dashboard look). */
body.gmgt-landing-body {
	background: #f1f5f9;
}

.gmgt-landing {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.gmgt-landing-inner {
	text-align: center;
	max-width: 560px;
	color: var(--gmgt-text);
}

.gmgt-landing-logo {
	max-width: 160px;
	height: auto;
	margin: 0 auto 24px;
}

.gmgt-landing-title {
	font-size: 40px;
	font-weight: 800;
	margin: 0 0 12px;
	color: var(--gmgt-text);
}

.gmgt-landing-subtitle {
	font-size: 18px;
	color: var(--gmgt-muted);
	margin: 0 0 32px;
}

.gmgt-landing-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.gmgt-landing-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: transform 0.12s ease, background 0.15s ease;
}

.gmgt-landing-btn:hover {
	transform: translateY(-1px);
}

.gmgt-landing-btn-primary {
	background: var(--gmgt-brand);
	color: #fff;
}

.gmgt-landing-btn-primary:hover {
	background: var(--gmgt-brand-dark);
}

.gmgt-landing-btn-secondary {
	background: #ffffff;
	color: var(--gmgt-text);
	border: 1px solid #cbd5e1;
}

.gmgt-landing-btn-secondary:hover {
	background: #f8fafc;
}

.gmgt-frontend-notice {
	max-width: 600px;
	margin: 40px auto;
	padding: 20px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 12px;
	text-align: center;
	color: #9a3412;
}
