.lash-login-container {
	max-width: 500px;
	margin: 60px auto;
	padding: 20px;
	font-family: 'Poppins', 'Segoe UI', sans-serif;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 40px;
	border: 1px solid #f0f0f0;
	width: 100%;
}

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

.login-header h1 {
	font-size: 32px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 12px 0;
}

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

.login-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-size: 13px;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.required {
	color: #e74c3c;
}

.input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.input-icon {
	position: absolute;
	left: 14px;
	font-size: 16px;
	z-index: 1;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
	padding: 12px 16px 12px 45px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	transition: all 0.3s ease;
	background: white;
	width: 100%;
	box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="email"]:focus {
	outline: none;
	border-color: #7c3aed;
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

.form-group input.has-error:focus {
	box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.error-message {
	display: none;
	color: #e74c3c;
	font-size: 12px;
	font-weight: 500;
	margin-top: -4px;
}

.form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px;
}

.remember-me {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #666;
	cursor: pointer;
	margin: 0;
}

.remember-me input[type="checkbox"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
	accent-color: #7c3aed;
}

.forgot-password-link {
	color: #7c3aed;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}

.forgot-password-link:hover {
	text-decoration: underline;
}

.btn-login {
	background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
	color: white;
	border: none;
	padding: 14px 24px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 8px;
}

.btn-login:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.btn-login:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.login-message {
	padding: 14px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	display: none;
	margin-top: 12px;
}

.login-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	border-left: 4px solid #27ae60;
}

.login-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	border-left: 4px solid #e74c3c;
}

.login-signup {
	text-align: center;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #e5ddd3;
	font-size: 14px;
	color: #666;
}

.login-signup a {
	color: #7c3aed;
	text-decoration: none;
	font-weight: 600;
}

.login-signup a:hover {
	text-decoration: underline;
}

.already-logged-in {
	text-align: center;
	padding: 40px 20px;
}

.already-logged-in h2 {
	font-size: 24px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 16px 0;
}

.already-logged-in p {
	font-size: 14px;
	color: #666;
	margin: 0 0 24px 0;
	line-height: 1.6;
}

.btn-dashboard {
	display: inline-block;
	background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
	color: white;
	text-decoration: none;
	padding: 12px 32px;
	border-radius: 6px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	font-size: 14px;
}

.btn-dashboard:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

@media (max-width: 600px) {
	.lash-login-container {
		margin: 40px auto;
	}

	.login-card {
		padding: 24px;
	}

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

	.form-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.forgot-password-link {
		white-space: normal;
	}
}
