	.login-container {
	background: var(--card_blue_bg);
	border-radius: 10px;
	box-shadow: 0 10px 40px rgba(255, 140, 50, 0.2);
	width: 100%;
	max-width: 500px;
	max-height: 500px;
	padding: 40px;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 50px 24px;
}

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

.login-header h2 {
	color: var(--orange);
	margin-bottom: 10px;
}

.login-header p {
	color: var(--light-text);
	font-size: 14px;
}

.alert {
	padding: 12px 15px;
	border-radius: 5px;
	margin-bottom: 20px;
	font-size: 14px;
}

.alert-error {
	background-color: var(--orange);
	color: white;
	border: 1px solid var(--orange);
}

.alert-success {
	background-color: var(--orange);
	color: white;
	border: 1px solid var(--orange);
}

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

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: var(--light-text);
	font-weight: 500;
	font-size: 14px;
}

.form-group input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--orange);
	border-radius: 5px;
	font-size: 14px;
	transition: border-color 0.3s;
	background-color: var(--card_blue_bg);
}

.form-group input:focus {
	outline: none;
	border-color: rgba(255, 140, 50, 0.798);
}

.remember-forgot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	font-size: 14px;
}

.remember-forgot label {
	display: flex;
	align-items: center;
	color: var(--light-text);
	cursor: pointer;
}

.remember-forgot input[type="checkbox"] {
	margin-right: 5px;
}

.remember-forgot a {
	color: #667eea;
	text-decoration: none;
}

.remember-forgot a:hover {
	text-decoration: underline;
}

.btn-login {
	width: 100%;
	padding: 12px;
	background: linear-gradient(135deg, #141622 0%, #667eea 50%, #ff8c32 100%);
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.2s;
}

.btn-login:hover {
	transform: translateY(-2px);
}

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