* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
	background: linear-gradient(to bottom, #1a2a3a, #3a6ea5);
	color: #333;
	overflow: hidden;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.rain-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}
.raindrop {
	position: absolute;
	width: 2px;
	height: 15px;
	background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
	border-radius: 0 0 5px 5px;
	animation: rainFall linear infinite;
}
.splash {
	position: absolute;
	bottom: 0;
	width: 8px;
	height: 5px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	animation: splash 0.4s ease-out;
	opacity: 0;
}
.login-container {
	position: relative;
	z-index: 10;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px;
	width: 450px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.4);
	transition: all 0.5s ease;
}
.login-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.logo {
	text-align: center;
	margin-bottom: 20px;
}
.logo i {
	font-size: 50px;
	color: #3498db;
	margin-bottom: 10px;
}
h1 {
	text-align: center;
	margin-bottom: 10px;
	color: #2c3e50;
	font-size: 28px;
}
.subtitle {
	text-align: center;
	color: #7f8c8d;
	margin-bottom: 30px;
	font-size: 14px;
}
.input-group {
	margin-bottom: 20px;
	position: relative;
}
label {
	display: block;
	margin-bottom: 8px;
	color: #2c3e50;
	font-weight: 600;
}
input {
	width: 100%;
	padding: 14px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	background: #fff;
	color: #333;
	font-size: 16px;
	transition: all 0.3s ease;
}
input:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}
.login-btn {
	width: 100%;
	padding: 15px;
	background: linear-gradient(to right, #3498db, #2ecc71);
	border: none;
	border-radius: 12px;
	color: white;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.login-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 7px 15px rgba(52, 152, 219, 0.4);
}
.login-btn:disabled {
	background: #95a5a6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}
.footer {
	text-align: center;
	margin-top: 25px;
	color: #7f8c8d;
	font-size: 14px;
}
.footer a {
	color: #3498db;
	text-decoration: none;
	font-weight: 600;
}
.puddle-container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 150px;
	z-index: 2;
	overflow: hidden;
}
.puddle {
	position: absolute;
	bottom: 0;
	border-radius: 50%;
	background: rgba(52, 152, 219, 0.3);
	box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2),
		0 0 20px rgba(52, 152, 219, 0.4);
	animation: puddleRipple 4s infinite ease-in-out;
}
.message {
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 20px;
	text-align: center;
	display: none;
}
.message.error {
	background: rgba(231, 76, 60, 0.1);
	color: #c0392b;
	border: 1px solid rgba(231, 76, 60, 0.3);
}
.message.success {
	background: rgba(46, 204, 113, 0.1);
	color: #27ae60;
	border: 1px solid rgba(46, 204, 113, 0.3);
}
@keyframes rainFall {
	0% {
		transform: translateY(-100px);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	100% {
		transform: translateY(100vh);
		opacity: 0;
	}
}
@keyframes splash {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	90% {
		transform: scale(1.2);
		opacity: 0.7;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}
@keyframes puddleRipple {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Flash Message Styles */
.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 8px;
}
.alert-success {
	background: rgba(46, 204, 113, 0.1);
	color: #27ae60;
	border-color: rgba(46, 204, 113, 0.3);
}
.alert-error {
	background: rgba(231, 76, 60, 0.1);
	color: #c0392b;
	border-color: rgba(231, 76, 60, 0.3);
}
.alert-warning {
	background: rgba(241, 196, 15, 0.1);
	color: #f39c12;
	border-color: rgba(241, 196, 15, 0.3);
}
