* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
	margin: 0;
}

body.elt-login-page {
	min-height: 100vh;
	background:
		radial-gradient(circle at top left, rgba(116, 7, 32, .16), transparent 24rem),
		radial-gradient(circle at bottom right, rgba(238, 224, 211, .82), transparent 30rem),
		linear-gradient(135deg, #eaf7fb 0%, #f7eee9 100%);
	color: #210914;
	font-family: Inter, Arial, sans-serif;
}

.elt-login-shell {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
}

.elt-login-card {
	width: min(920px, 100%);
	min-height: 560px;
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	overflow: hidden;
	border: 1px solid rgba(116, 7, 32, .14);
	border-radius: 24px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 30px 80px rgba(71, 9, 25, .18);
}

.elt-login-visual {
	display: grid;
	place-items: center;
	padding: 42px;
	background:
		linear-gradient(135deg, rgba(116, 7, 32, .04), rgba(116, 7, 32, .10)),
		#f6ece8;
}

.elt-login-visual img {
	width: min(300px, 78%);
	height: auto;
	display: block;
	border-radius: 34px;
	box-shadow: 0 24px 55px rgba(71, 9, 25, .24);
}

.elt-login-form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 52px;
	background: #ffffff;
}

.elt-login-heading {
	margin-bottom: 30px;
}

.elt-login-heading p {
	margin: 0 0 12px;
	color: #740720;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
}

.elt-login-heading h1 {
	margin: 0;
	color: #210914;
	font-size: 34px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: 0;
}

.elt-login-heading span {
	display: block;
	margin-top: 10px;
	color: #8a6c73;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.elt-field {
	display: block;
	position: relative;
	margin-bottom: 18px;
}

.elt-field span {
	display: block;
	margin-bottom: 8px;
	color: #6f5259;
	font-size: 13px;
	font-weight: 800;
}

.elt-field input {
	width: 100%;
	height: 52px;
	border: 1px solid #eadde0;
	border-radius: 12px;
	outline: none;
	background: #fffafa;
	color: #210914;
	font: 700 15px/1 Inter, Arial, sans-serif;
	padding: 0 15px;
	box-shadow: none;
}

.elt-field input:focus {
	border-color: #740720;
	box-shadow: 0 0 0 4px rgba(116, 7, 32, .10);
}

.elt-password-field input {
	padding-right: 52px;
}

.elt-password-toggle {
	position: absolute;
	right: 12px;
	bottom: 10px;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: #8a6c73;
	cursor: pointer;
}

.elt-password-toggle:hover {
	background: #f6ece8;
	color: #740720;
}

.elt-login-button {
	width: 100%;
	height: 52px;
	margin-top: 4px;
	border: 1px solid #740720;
	border-radius: 12px;
	background: #740720;
	color: #f8eadf;
	font: 800 15px/1 Inter, Arial, sans-serif;
	cursor: pointer;
	box-shadow: 0 16px 30px rgba(116, 7, 32, .24);
}

.elt-login-button:hover,
.elt-login-button:focus {
	background: #5d061b;
	border-color: #5d061b;
}

.elt-login-footer {
	margin-top: 22px;
	color: #a89198;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
}

@media (max-width: 820px) {
	.elt-login-card {
		max-width: 460px;
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.elt-login-visual {
		padding: 30px;
	}

	.elt-login-visual img {
		width: 150px;
		border-radius: 24px;
	}

	.elt-login-form {
		padding: 34px 30px 32px;
	}
}

@media (max-width: 420px) {
	.elt-login-shell {
		padding: 18px;
	}

	.elt-login-heading h1 {
		font-size: 29px;
	}

	.elt-login-form {
		padding-left: 22px;
		padding-right: 22px;
	}
}
