.login-container {
	min-height: 100vh;
	background: linear-gradient(to bottom, var(--color-element-primary) 0, var(--color-element-primary) 50%, #fff 50%, #fff 100%);
}

.login-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.login-card {
	width: 460px;
	max-width: 92vw;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 12px 24px -4px rgba(145, 155, 171, 0.2), 0 0 2px 0 rgba(145, 158, 171, 0.4);
	border: 0.5px solid var(--color-border-gray-light);
	padding: 70px 50px;
}

.login-card .logo-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}

.login-card .logo-wrapper img {
	height: 42px;
	width: auto;
	display: block;
}

.field {
	margin-top: 20px;
}

.login-input {
	width: 100%;
	height: 48px;
	padding: 0 16px;
	border: 1px solid var(--color-border-gray);
	border-radius: 6px;
	outline: none;
	font-size: 16px;
	transition: box-shadow 0.15s ease, border-color 0.15s ease;
	background: #fff;
}

.login-input:focus {
	border-color: rgba(59, 76, 255, 0.7);
	box-shadow: 0 0 0 4px rgba(59, 76, 255, 0.18);
}

.login-checkbox-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 14px;
	cursor: pointer;
}

.login-checkbox-wrapper input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: var(--color-element-primary);
}

.login-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
	width: 100%;
	height: 48px;
	border-radius: 6px;
	background: var(--color-element-primary);
	color: #fff;
	cursor: pointer;
	font-size: 16px;
}

.login-btn:hover {
	filter: brightness(0.9);
}

.login-footer {
	position: absolute;
	bottom: 5%;
	width: 100%;
	text-align: center;
	color: var(--color-text-subtler);
	font-size: 14px;
}

