/* Login Page - Modern Redesign */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.login-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6a11cb 100%);
	background-attachment: fixed;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	padding: 20px;
}

.login-container {
	width: 100%;
	max-width: 420px;
}

.login-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
	overflow: hidden;
	animation: cardAppear 0.5s ease;
}

@keyframes cardAppear {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.login-header {
	background: linear-gradient(90deg, #6a11cb, #2575fc);
	color: #fff;
	padding: 36px 32px;
	text-align: center;
}

.login-icon {
	font-size: 48px;
	margin-bottom: 12px;
	opacity: 0.95;
}

.login-header h1 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 4px;
	letter-spacing: -0.5px;
}

.login-subtitle {
	font-size: 0.9rem;
	opacity: 0.9;
	font-weight: 400;
}

.expiry-alert {
	margin: 0;
	border-radius: 0;
	border-left: none;
	border-right: none;
	padding: 12px 24px;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.expiry-alert i {
	font-size: 1.1rem;
}

.login-form {
	padding: 32px;
}

.form-group-login {
	margin-bottom: 20px;
}

.form-label-login {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: #4a5568;
	margin-bottom: 8px;
}

.form-label-login i {
	width: 20px;
	margin-right: 6px;
	opacity: 0.8;
}

.form-control-login {
	width: 100%;
	padding: 14px 18px;
	font-size: 1rem;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	transition: border-color 0.2s, box-shadow 0.2s;
	background: #f8fafc;
}

.form-control-login:focus {
	outline: none;
	border-color: #6a11cb;
	box-shadow: 0 0 0 4px rgba(106, 17, 203, 0.15);
	background: #fff;
}

.form-control-login::placeholder {
	color: #94a3b8;
}

.btn-login {
	width: 100%;
	padding: 14px 24px;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(90deg, #667eea, #764ba2);
	border: none;
	border-radius: 12px;
	cursor: pointer;
	margin-top: 8px;
	transition: transform 0.2s, box-shadow 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-login:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.45);
	color: #fff;
}

.btn-login:active {
	transform: translateY(0);
}

@media (max-width: 480px) {
	.login-form {
		padding: 24px;
	}
	.login-header {
		padding: 28px 24px;
	}
	.login-header h1 {
		font-size: 1.5rem;
	}
}
