body {
	width: 100%;
	height: 100vh;
	margin: 0;
	overflow: hidden;

	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #667085;
}

.container {
	width: 100%;
	height: 100%;
	display: flex;
	overflow: hidden;
}

.container > .main {
	flex: 1;
	background: white;
}

.container > .aside {
	position: relative;
	width: 400px;
	background: linear-gradient(0deg, #BFC7D6, #BFC7D6), linear-gradient(150.2deg, #140F94 46.2%, #BFC7D6 90.31%);
}

header {
	display: flex;
	justify-content: space-between;
	min-width: 600px;
	padding: 44px 40px;
}

header > .logo {
	display: flex;
	align-items: center;
	width: fit-content;
}

header > .logo > svg {
	margin: 0 14px;
}

header .aside {
	display: flex;
	align-items: center;
	gap: 24px;
}

header > .aside > a {
	display: flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 30px 0 110px 110px;
	height: 100%;
	max-height: 600px;
}

.content > div:last-child {
	margin-bottom: 100px;
}

.content .title {
	margin-bottom: 20px;
}

h1 {
	font-style: normal;
	font-weight: 600;
	font-size: 48px;
	line-height: 60px;
	letter-spacing: -0.02em;
	color: #1D2939;
	margin: 0;
}

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

form > div:first-child {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.form-group {
	position: relative;
}

h3 {
	display: inline-block;
	margin-bottom: 20px;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	color: #1D2939;
	margin: 0 0 20px 0;
}

.form-group .input-field {
	padding: 12px 14px 12px 16px;
	width: 290px;
	background: #FFFFFF;
	border: 1px solid #D0D5DD;
	box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
	border-radius: 8px;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #667085;
}

.form-group.error {
	margin-bottom: 28px;
}

.form-group.error .input-field {
	border-color: #FDA29B;
}

.form-group.error::before {
	content: "";
	position: absolute;
	right: 16px;
	top: 16px;
	width: 16px;
	height: 16px;
	background: url("./assets/icons/alert.svg");
}

.form-group.error::after {
	content: "Neteisingas el. pašto formatas";
	position: absolute;
	bottom: -28px;
	display: block;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #F04438;
}

.form-group:not(.error) .input-field:hover {
	border-color: #BEC6D2;
}

.form-group .input-field:focus {
	outline: none;
}

.form-group:not(.error) .input-field:focus {
	border-color: #140F94;
	box-shadow: 0px 2px 4px rgba(20, 15, 148, 0.15);
}

input[type="submit"] {
	padding: 12px 20px;
	background: #140F94;
	box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
	border: none;
	border-radius: 8px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #FFFFFF;
	font-family: 'Inter';
}

input[type="submit"]:hover {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #140F94;
	cursor: pointer;
}

.input-notice {
	width: 290px;
	font-size: 14px;
	line-height: 20px;
}

.aside-background-mockup,
.aside-foreground-mockup {
	position: absolute;
}

.aside-background-mockup {
	top: calc(50% - 256px);
	right: -110px;
}

.aside-foreground-mockup {
	top: calc(50% - 256px + 70px);
	left: -170px;
}


.benefits {
	list-style-image: url("./assets/icons/check.svg");
}

.benefits li > span {
	display: inline-block;
	vertical-align: middle;
	margin-top: -15px;
	margin-left: 12px;
}

.success {
	color: #12B76A;
	margin-top: 12px;
}

.success::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 12px;
	background: url("./assets/icons/check-success.svg");
}