.login-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(230, 130, 0, 0.7) 0%, rgba(230, 170, 0, 0.7) 100%);
	padding: 20px;
}

.login-box {
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	padding: 40px;
	max-width: 450px;
	width: 100%;
}

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

.login-header img {
	max-width: 80px;
	margin-bottom: 20px;
}

.login-header h2 {
	color: #333;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
}

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

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

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

.form-group input {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 5px;
	font-size: 15px;
	transition: border-color 0.3s;
}

.form-group input:focus {
	outline: none;
	border-color: #ffc400;
}

.form-group .input-help {
	font-size: 12px;
	color: #999;
	margin-top: 5px;
}

.error-message {
	font-size: 12px;
	color: #e74c3c;
	margin-top: 5px;
	min-height: 18px;
	font-weight: 500;
}

.form-group.has-error input {
	border-color: #e74c3c;
}

.form-group.has-error input:focus {
	border-color: #e74c3c;
}

.btn-login {
	width: 100%;
	padding: 14px;
	background: linear-gradient(135deg, rgba(230, 130, 0, 0.75) 0%, rgba(230, 170, 0, 0.75) 100%);
	border: none;
	color: white;
	font-size: 16px;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(255, 196, 0, 0.5);
}

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

.back-home {
	text-align: center;
	margin-top: 20px;
}

.back-home a {
	color: rgba(230, 130, 0, 0.7);
	text-decoration: none;
	font-size: 14px;
}

.back-home a:hover {
	text-decoration: underline;
}

.help-links {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

.help-links a {
	color: #666;
	font-size: 13px;
	margin: 0 10px;
	text-decoration: none;
}

.help-links a:hover {
	color: rgba(230, 170, 0, 0.7);
}
