* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	background: linear-gradient(135deg, #dddddd 0%, #eeeeee 100%);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.container {
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	max-width: 400px;
	width: 100%;
	padding: 40px;
}

h1 {
	text-align: center;
	color: #333;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 5px;
	color: #555;
	font-weight: bold;
}

input[type="email"],
input[type="password"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	transition: border-color 0.3s;
}

input:focus {
	outline: none;
	border-color: #667eea;
}

.btn {
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-primary {
	background: linear-gradient(135deg, #62f862 0%, #2fc402 100%);
	color: white;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
	background: #6c757d;
	color: white;
	margin-top: 10px;
}

.btn-secondary:hover {
	background: #5a6268;
}

.message {
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 20px;
	text-align: center;
}

.message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.links {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
}

.links a {
	color: #667eea;
	text-decoration: none;
	display: block;
	margin: 10px 0;
}

.links a:hover {
	text-decoration: underline;
}

.remember-me {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.remember-me input[type="checkbox"] {
	margin-right: 8px;
}