﻿/* Navbar with white background and light shadow (same as About page) */
#navbar {
	background: white !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
	border-bottom: none !important;
}

#navbar .nav-initial {
	background: #ffffff !important;
	backdrop-filter: none !important;
}

#navbar .nav-scrolled {
	background: #ffffff !important;
	backdrop-filter: none !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

#navbar .nav-links a {
	color: var(--foreground);
}

#navbar .icon-btn {
	color: var(--foreground);
}

#navbar .logo {
	color: var(--foreground);
}

#navbar .nav-links a.active {
	color: #1c1917 !important;
}

/* Specific Auth Page Styles */
.auth-container {
	min-height: 100vh;
	background: linear-gradient(135deg, #faf9f7 0%, #f5f5f4 100%);
	display: flex;
	flex-direction: column;
	padding-top: 80px;
}

.auth-content {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 24px 80px;
}

.auth-card {
	width: 100%;
	max-width: 480px;
	background: white;
	padding: 48px 40px;
	border-radius: 20px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-header {
	text-align: center;
	margin-bottom: 32px;
}

.auth-header h1 {
	font-family: "Cormorant Garamond", serif;
	font-size: 2.25rem;
	font-weight: 600;
	color: var(--foreground);
	margin-bottom: 8px;
	letter-spacing: -0.02em;
}

.auth-header p {
	color: #78716c;
	font-size: 0.95rem;
	font-weight: 400;
	margin: 0;
}

.tabs-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #f5f5f4;
	padding: 6px;
	border-radius: 10px;
	margin-bottom: 32px;
	gap: 4px;
}

.tab-trigger {
	padding: 10px 16px;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	border: none;
	background: transparent;
	border-radius: 8px;
	transition: all 0.3s ease;
	color: #78716c;
	font-family: "Montserrat", sans-serif;
}

.tab-trigger.active {
	background: white;
	color: var(--foreground);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.tab-trigger:hover:not(.active) {
	color: var(--foreground);
}

.tab-content {
	display: none;
	animation: fadeIn 0.3s ease;
}

.tab-content.active {
	display: block;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--foreground);
	font-family: "Montserrat", sans-serif;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.input-style {
	width: 100%;
	height: 44px;
	border: 1px solid #e7e5e4;
	border-radius: 8px;
	padding: 0 16px;
	font-size: 0.95rem;
	outline: none;
	transition: all 0.3s ease;
	font-family: "Montserrat", sans-serif;
	background: white;
	color: var(--foreground);
}

.input-style:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(218, 131, 10, 0.1);
	transition: all 0.3s ease;
}

.input-style::placeholder {
	color: #a8a29e;
}

.forgot-link {
	font-size: 0.85rem;
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.forgot-link:hover {
	color: #c67509;
	transition: all 0.3s ease;
}

.label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.btn-auth {
	width: 100%;
	background: transparent;
	border: 2px solid #da830a;
	color: #da830a;
	padding: 14px 24px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	margin-top: 8px;
	transition: all 0.3s ease;
	font-family: "Montserrat", sans-serif;
	box-shadow: 0 2px 8px rgba(218, 131, 10, 0.15);
}

.btn-auth:hover:not(:disabled) {
	background: #da830a;
	color: white;
	border-color: #da830a;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(218, 131, 10, 0.4);
}

.btn-auth:active:not(:disabled) {
	transform: translateY(0);
}

.btn-auth:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.profile-upload-label {
	display: block;
	border: 1px dashed #d6d3d1;
	border-radius: 10px;
	padding: 12px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #78716c;
	font-size: 0.9rem;
}

.profile-upload-label:hover {
	border-color: var(--primary);
	color: var(--foreground);
	background: #fffbeb;
}

#profile-image {
	display: none;
}

.profile-preview {
	margin-top: 10px;
	width: 72px;
	height: 72px;
	border-radius: 999px;
	border: 2px solid #f3f4f6;
	object-fit: cover;
	display: none;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 640px) {
	.auth-card {
		padding: 36px 28px;
		border-radius: 16px;
	}

	.auth-header h1 {
		font-size: 1.875rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}
