/* Modern Login Page Styles */
.login-page {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

/* Hide footer on login page */
.login-page ~ footer,
body:has(.login-page) footer {
	display: none !important;
}

.login-container {
	display: flex;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.login-left {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
	padding: 2rem;
	overflow-y: auto;
}

.login-form-wrapper {
	width: 100%;
	max-width: 460px;
	padding: 3rem 2.5rem;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.login-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.login-logo {
	width: 120px;
	height: auto;
	margin-bottom: 1.5rem;
	display: inline-block;
}

.login-title {
	font-size: 2rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.login-subtitle {
	font-size: 0.95rem;
	color: #6c757d;
	margin: 0;
}

.modern-login-form {
	margin-bottom: 2rem;
}

.modern-login-form .form-group {
	margin-bottom: 1.75rem;
}

.modern-login-form .form-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: #495057;
	margin-bottom: 0.5rem;
}

.input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.input-icon {
	position: absolute;
	left: 1rem;
	color: #6c757d;
	font-size: 1.1rem;
	pointer-events: none;
	z-index: 1;
}

.modern-input {
	width: 100%;
	padding: 0.9rem 1rem 0.9rem 3rem;
	font-size: 1rem;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	transition: all 0.3s ease;
	background-color: #f8f9fa;
}

.modern-input:focus {
	outline: none;
	border-color: #0d6efd;
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.modern-input::placeholder {
	color: #adb5bd;
}

.modern-login-btn {
	width: 100%;
	padding: 1rem;
	font-size: 1.05rem;
	font-weight: 600;
	border: none;
	border-radius: 12px;
	background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	margin-top: 2rem;
}

.modern-login-btn:hover {
	background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.modern-login-btn:active {
	transform: translateY(0);
}

.modern-login-btn i {
	font-size: 1.5rem;
}

.login-footer {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid #e9ecef;
}

.footer-text {
	font-size: 0.85rem;
	color: #6c757d;
	margin: 0;
}

.login-right {
	flex: 1;
	position: relative;
	background: linear-gradient(135deg, #001327 0%, #0d6efd 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.login-right::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	33% { transform: translate(30px, -30px) rotate(120deg); }
	66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.graphic-overlay {
	position: relative;
	z-index: 1;
	padding: 3rem;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100%;
}

.graphic-content {
	color: #ffffff;
	flex: 1;
}

.graphic-footer {
	color: #ffffff;
	text-align: center;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.9rem;
	opacity: 0.85;
}

.graphic-footer p {
	margin: 0;
}

.graphic-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.graphic-description {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	line-height: 1.6;
	opacity: 0.95;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.05rem;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateX(10px);
}

.feature-item i {
	font-size: 1.5rem;
	color: #4ade80;
}

/* Responsive Design */
@media (max-width: 992px) {
	.login-container {
		flex-direction: column;
	}

	.login-right {
		display: none;
	}

	.login-left {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.login-form-wrapper {
		padding: 2rem 1.5rem;
	}

	.login-title {
		font-size: 1.75rem;
	}

	.login-logo {
		width: 100px;
	}
}