/* 

COLORS

blue-1000: #040439
blue-600: #1A63FF
blue-300: #98B9F7
blue-100: #DAE7FF
slate: #4F4F6D
red: #E31E24

 */

.demo-form.card {
	position: relative;

	background-color: var(--blue-1000);
	background-repeat: no-repeat;
	background-position: top;

	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;

	padding-top: 36px;
	z-index: 1;
}

.demo-form.card.animated-background-image.transparent::before {
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	background-position-x: -140px;
}

.demo-form.card .form-header {
	display: flex;
	flex-direction: column;
	gap: inherit;
}

.demo-form.card .form-header .image {
	width: 180px;
	margin: 0 auto;
}

.demo-form.card .body {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.demo-form.card .body .title {
	color: var(--red);
	text-align: center;
}

.demo-form.card .body .filled {
	margin-top: 10px;
	width: 100%;
}

.demo-form.card .body .filled {
	font-size: 16px;
}

@media (min-width: 768px) {
	.demo-form.card {
		background-position: right;
		padding: 0;
		flex-direction: row;
	}

	.demo-form.card .form-header {
		width: 50%;
		padding: 0 20px;
	}

	.demo-form.card .form-header .image {
		width: 100%;
	}

	.demo-form.card .body {
		width: 50%;
		padding: 30px 20px;
		padding-right: 75px;
		background-color: white;
	}

	.demo-form.card .body .title {
		margin-bottom: 10px;
	}

	.demo-form.card .body .filled {
		margin-top: 10px;
	}
}
@media (min-width: 1440px) {
	.demo-form.card.animated-background-image.transparent::before {
		background-position-x: -250px;
	}

	.demo-form.card .form-header .image {
		width: 350px;
	}

	.demo-form.card .body {
		padding: 50px;
		padding-right: 75px;
	}
}
