.login-container {
	display: flex;
	height: 100vh;
	overflow: hidden;
	position: relative;
}

.login-left {
	flex: 1;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: grayscale(100%);
}

.login-logo {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 10;
	filter: drop-shadow(0 0 8px rgba(255, 255, 255, 5));
}

.login-logo img {
	max-height: 40px;
}

.login-right {
	flex: 1;
	background-color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 80px;
	position: relative;
}

.login-title {
	font-size: 2.5rem;
	font-weight: 300;
	color: #999;
	margin-bottom: 30px;
}

.login-quote {
	font-size: 1rem;
	font-style: italic;
	color: #999;
	margin-bottom: 15px;
	line-height: 1.6;
	font-family: sans-serif;
}

.login-author {
	text-align: right;
	font-size: 0.875rem;
	color: #999;
	margin-bottom: 20px;
	font-family: sans-serif;
}

.login-form {
	margin-top: 20px;
}

.login-input-group {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.login-input-wrapper {
	flex: 1;
	position: relative;
}

.login-input-wrapper label {
	display: block;
	font-size: 0.875rem;
	color: #999;
	margin-bottom: 8px;
	font-family: sans-serif;
}

.login-input-wrapper input {
	width: 100%;
	border: none;
	border-bottom: 1px solid #ddd;
	padding: 8px;
	padding-right: 40px;
	font-size: 1rem;
	color: #333;
	background-color: white !important;
	background: white !important;
	outline: none;
	font-family: sans-serif;
}

.password-input-container {
	position: relative;
	width: 100%;
}

.password-toggle {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	transition: color 0.2s;
}

.password-toggle:hover {
	color: #333;
}

.password-toggle:focus {
	outline: none;
	color: #333;
}

.eye-icon {
	width: 15px;
	height: 15px;
}

.login-input-wrapper input:focus {
	border-bottom-color: #999;
}

input:-internal-autofill-selected{
	background-color: white !important;
	background: white !important;
}

.login-button-container {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}

.login-button {
	background-color: red;
	color: white;
	border: none;
	padding: 8px 35px;
	font-size: 1rem;
	border-radius: 4px;
	cursor: pointer;
	font-family: sans-serif;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-button:hover {
	background-color: darkred
}

.login-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

@media (max-width: 768px) {
	.login-container {
		flex-direction: column;
	}

	.login-left {
		height: 40vh;
	}

	.login-right {
		padding: 40px 30px;
	}

	.login-input-group {
		flex-direction: column;
	}
}

