/* Login Page Styles */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.login-container {
	width: 100%;
	max-width: 420px;
}

.login-box {
	background: white;
	border-radius: 16px;
	padding: 48px 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.login-header {
	text-align: center;
	margin-bottom: 32px;
}

.login-logo {
	width: 80px;
	height: auto;
	margin-bottom: 24px;
}

.login-header h1 {
	font-size: 28px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.login-header p {
	font-size: 14px;
	color: #666;
}

.error-message {
	background-color: #fee;
	border: 1px solid #fcc;
	color: #c33;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 24px;
	font-size: 14px;
	animation: shake 0.3s;
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-8px); }
	75% { transform: translateX(8px); }
}

.login-form {
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
}

.form-input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.2s;
	background-color: #fafafa;
}

.form-input:focus {
	outline: none;
	border-color: #667eea;
	background-color: white;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder {
	color: #999;
}

.login-btn {
	width: 100%;
	padding: 14px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	margin-top: 8px;
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

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

.login-footer {
	text-align: center;
	padding-top: 24px;
	border-top: 1px solid #e0e0e0;
}

.login-footer p {
	font-size: 13px;
	color: #666;
}

/* Responsive */
@media (max-width: 480px) {
	.login-box {
		padding: 32px 24px;
	}

	.login-header h1 {
		font-size: 24px;
	}

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