:root {
	--brand-dark: #3e3b36;
	--brand-gold: #a89f81;
	--brand-beige: #f5f5f0;
	--brand-text: #4a4a4a;
}

body {
	font-family: 'Lato', sans-serif;
	color: var(--brand-text);
	background-color: #fcfcfc;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

h1, h2, h3, h4, h5, h6, .font-serif {
	font-family: 'Playfair Display', serif;
}

/* Header Styles (Consistent with Index) */
.bg-gold { background-color: var(--brand-gold); }
.text-gold { color: var(--brand-gold); }
.navbar-brand-logo {
	width: 40px; height: 40px;
	background-color: #1e3a8a;
	color: white;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-family: 'Playfair Display', serif;
	font-weight: bold; font-style: italic; font-size: 1.25rem;
}

/* Login Card */
.auth-container {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 1rem;
}

.auth-card {
	background: #fff;
	width: 100%;
	max-width: 450px;
	padding: 2.5rem;
	border: 1px solid #eee;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.auth-tabs {
	display: flex;
	border-bottom: 1px solid #eee;
	margin-bottom: 2rem;
}

.auth-tab {
	flex: 1;
	text-align: center;
	padding-bottom: 1rem;
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: #aaa;
	cursor: pointer;
	transition: all 0.3s;
	border-bottom: 2px solid transparent;
}

.auth-tab.active {
	color: var(--brand-dark);
	border-bottom-color: var(--brand-gold);
}

/* Forms */
.form-label-custom {
	font-size: 0.7rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #888;
	margin-bottom: 0.5rem;
}

.form-control-custom {
	border-radius: 0;
	border: 1px solid #eee;
	padding: 12px 15px;
	font-size: 0.9rem;
	transition: all 0.3s;
}

.form-control-custom:focus {
	border-color: var(--brand-gold);
	box-shadow: none;
	background-color: #fcfcfc;
}

.btn-auth {
	border: 1px solid var(--brand-dark);
	background: var(--brand-dark);
	color: #fff;
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	padding: 1rem;
	width: 100%;
	border-radius: 0;
	transition: all 0.3s;
	margin-top: 1rem;
}

.btn-auth:hover {
	background: #fff;
	color: var(--brand-dark);
}

.social-login {
	margin-top: 2rem;
	border-top: 1px solid #eee;
	padding-top: 2rem;
	text-align: center;
}

.social-icon {
	width: 40px;
	height: 40px;
	border: 1px solid #eee;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 8px;
	color: #666;
	transition: all 0.3s;
	text-decoration: none;
}

.social-icon:hover {
	border-color: var(--brand-gold);
	color: var(--brand-gold);
}

/* Footer */
.bg-beige { background-color: var(--brand-beige); }

@media (max-width: 576px) {
	.auth-card {
		padding: 1.5rem;
		border: none;
		box-shadow: none;
		background: transparent;
	}
}


.layui-form .layui-input:focus {
  border-color: #a89f81 !important;
}