/* BACKGROUND PICTURE */
body, .container-fluid {
	margin: 0;
	padding: 0;
}
.bg-picture img {
	width: 100%;
	height: 100%;
	max-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	object-fit: cover;
	object-position: 80% 100%;
}

@media (max-width: 500px), (max-height: 500px) {
	.bg-picture img {
		display: none;
	}
}

/* CUSTOM FORM */
.overlay-content {
	right: 50%;
	bottom: 50%;
	transform: translate(50%,50%);
	position: absolute;
	border-radius: 17px;
}

.form-signin {
	width: 100%;
	max-width: 300px;
	padding: 13px;
}