/* Login Page Styles */
.login-page {
	min-height: calc(100vh - 300px);
	background: linear-gradient(135deg, #fdfbf6 0%, #f5f0df 100%);
	padding: 60px 20px;
	font-family: 'Noto Sans', sans-serif;
}

.login-container {
	max-width: 480px;
	margin: 0 auto;
}

.login-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(138, 122, 63, 0.1);
	overflow: hidden;
	border: 2px solid #e5d9c3;
}

.login-header {
	text-align: center;
	padding: 40px 30px 30px;
	background: linear-gradient(135deg, #fdfbf6 0%, #faf6ed 100%);
	border-bottom: 2px solid #e5d9c3;
}

.login-logo {
	width: 140px;
	height: auto;
	margin: 0 auto 20px;
	display: block;
}

.login-title {
	color: #1f2937;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 8px;
}

.login-subtitle {
	color: #6b7280;
	font-size: 15px;
	margin: 0;
}

.login-form {
	padding: 40px 30px;
}

.form-group {
	margin-bottom: 24px;
}

.form-label {
	display: block;
	color: #374151;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}

.form-input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e5d9c3;
	border-radius: 12px;
	font-size: 15px;
	color: #1f2937;
	transition: all 0.3s ease;
	background: white;
}

.form-input:focus {
	outline: none;
	border-color: #8a7a3f;
	box-shadow: 0 0 0 4px rgba(138, 122, 63, 0.1);
}

.form-input.error {
	border-color: #ef4444;
}

.form-input::placeholder {
	color: #9ca3af;
}

.error-message {
	color: #ef4444;
	font-size: 13px;
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.alert-error {
	background: #fef2f2;
	border: 2px solid #fecaca;
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 24px;
	color: #991b1b;
	font-size: 14px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.alert-icon {
	color: #ef4444;
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 2px;
}

.checkbox-group {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}

.checkbox-input {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: #8a7a3f;
}

.checkbox-label {
	color: #374151;
	font-size: 14px;
	cursor: pointer;
	user-select: none;
}

.submit-button {
	width: 100%;
	padding: 14px 24px;
	background: linear-gradient(135deg, #8a7a3f 0%, #6f6134 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(138, 122, 63, 0.2);
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(138, 122, 63, 0.3);
}

.submit-button:active {
	transform: translateY(0);
}

.login-footer {
	text-align: center;
	padding: 24px 30px 30px;
	background: #fdfbf6;
	border-top: 1px solid #e5d9c3;
}

.footer-text {
	color: #6b7280;
	font-size: 14px;
	margin: 0 0 12px;
}

.footer-link {
	color: #8a7a3f;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: #6f6134;
	text-decoration: underline;
}

.divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 24px 0;
}

.divider::before,
.divider::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #e5d9c3;
}

.divider span {
	padding: 0 16px;
	color: #9ca3af;
	font-size: 14px;
}

.register-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px;
	background: #faf6ed;
	border-radius: 12px;
	margin-top: 20px;
	border: 2px dashed #e5d9c3;
}

.register-cta-text {
	color: #6b7280;
	font-size: 14px;
	margin: 0;
}

.register-cta-link {
	color: #8a7a3f;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.register-cta-link:hover {
	color: #6f6134;
}

/* Mobile Responsive */
@media (max-width: 576px) {
	.login-page {
		padding: 30px 15px;
		min-height: calc(100vh - 250px);
	}

	.login-header {
		padding: 30px 20px 20px;
	}

	.login-logo {
		width: 120px;
	}

	.login-title {
		font-size: 24px;
	}

	.login-subtitle {
		font-size: 14px;
	}

	.login-form {
		padding: 30px 20px;
	}

	.form-input {
		padding: 12px 14px;
		font-size: 14px;
	}

	.submit-button {
		padding: 12px 20px;
		font-size: 15px;
	}

	.login-footer {
		padding: 20px;
	}
}