﻿/* Footer Styles */
.footer {
	background: linear-gradient(to right, #2c3e50, #3498db);
	color: #fff !important;
	padding: 1.5rem 0;
	position: relative;
	bottom: 0;
	width: 100%;
	font-family: 'Lato', sans-serif;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

	.footer .container {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		text-align: center;
	}

	.footer a {
		color: #fff;
		text-decoration: none;
		transition: color 0.3s ease;
		font-weight: 500;
		border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
	}

		.footer a:hover {
			color: #f1c40f;
			border-bottom-color: #f1c40f;
		}

/* Responsive adjustments */
@media (max-width: 768px) {
	.footer {
		padding: 1rem 0;
	}

		.footer .container {
			font-size: 0.9rem;
		}
}


/* Parent Section */
.premium-login {
	min-height: 100vh;
	background: linear-gradient(135deg, #fdfbfb, #ebedee);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	color: #334155;
	cursor: none;
}

	/* Background blobs */
	.premium-login .login-bg {
		position: absolute;
		width: 420px;
		height: 420px;
		border-radius: 50%;
		filter: blur(90px);
		opacity: 0.7;
		background: #c7d2fe;
		top: -120px;
		left: -120px;
		animation: float 10s infinite alternate;
	}

	.premium-login .login-bg-2 {
		background: #bae6fd;
		bottom: -140px;
		right: -140px;
		top: auto;
		left: auto;
		animation-delay: 4s;
	}

/* Floating animation */
@keyframes float {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-40px);
	}
}

/* Login Card */
.premium-login .login-card {
	width: 420px;
	padding: 45px;
	background: rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(25px);
	border-radius: 20px;
	border: 1px solid rgba(255,255,255,0.4);
	box-shadow: 0 25px 60px rgba(0,0,0,0.08);
	animation: fadeUp 1.1s ease;
	z-index: 2;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.premium-login h2 {
	text-align: center;
	font-weight: 600;
	margin-bottom: 30px;
	color: #1e293b;
}

/* Form */
.premium-login .form-group {
	margin-bottom: 22px;
}

.premium-login label {
	font-size: 13px;
	color: #475569;
	margin-bottom: 6px;
	display: block;
}

.premium-login .form-control {
	width: 100%;
	padding: 13px 15px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	outline: none;
	font-size: 14px;
	background: rgba(255,255,255,0.9);
	transition: 0.3s ease;
}

	.premium-login .form-control:focus {
		border-color: #a5b4fc;
		box-shadow: 0 0 0 4px rgba(165, 180, 252, 0.3);
	}

/* Button */
.premium-login .btn-login {
	width: 100%;
	padding: 13px;
	border-radius: 14px;
	border: none;
	background: linear-gradient(135deg, #a5b4fc, #c7d2fe);
	color: white;
	font-weight: 600;
	letter-spacing: 0.8px;
	transition: 0.3s ease;
}

	.premium-login .btn-login:hover {
		transform: translateY(-2px);
		box-shadow: 0 12px 30px rgba(165,180,252,0.5);
	}

/* Hide default cursor ONLY inside login */
.premium-login {
	cursor: none;
}

	 Custom Cursor 
	.premium-login .custom-cursor {
		position: fixed;
		width: 38px;
		height: 42px;
		pointer-events: none;
		z-index: 9999;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%23a5b4fc'/%3E%3Cstop offset='100%25' stop-color='%23bae6fd'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23g)' d='M6 4 L58 32 L34 36 L26 58 Z'/%3E%3C/svg%3E");
		background-size: contain;
		background-repeat: no-repeat;
		transform-origin: left top;
		animation: cursorShake 0.6s infinite alternate ease-in-out;
	}

@keyframes cursorShake {
	from {
		transform: rotate(-2deg);
	}

	to {
		transform: rotate(2deg);
	}
}

 Sparkle 
.sparkle {
	position: fixed;
	width: 6px;
	height: 6px;
	background: radial-gradient(circle, #c7d2fe 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: sparkleFade 0.8s forwards;
	z-index: 9998;
}

@keyframes sparkleFade {
	from {
		opacity: 1;
		transform: scale(1);
	}

	to {
		opacity: 0;
		transform: scale(2);
	}
}

.premium-footer {
	position: fixed;
	bottom: 18px;
	width: 100%;
	text-align: center;
	z-index: 999;
}

	.premium-footer .container {
		font-size: 13px;
		color: #64748b;
		padding: 8px 20px;
		background: rgba(255, 255, 255, 0.55);
		backdrop-filter: blur(12px);
		border-radius: 14px;
		display: inline-block;
		box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	}

	.premium-footer span {
		font-weight: 600;
		background: linear-gradient(135deg, #a5b4fc, #bae6fd);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}

