html {
	box-sizing: border-box;
	font-size: 16px;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

body {
	height: 100%;
	font-family: 'San Francisco', Arial, Helvetica, sans-serif;
}

.falso-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 100%;
	width: 100%;
}

@media (width <=700px) {
	section.left.left {
		display: none;
	}


	.falso-body {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		background-color: #003542;
	}
}

section.left {
	display: flex;
	justify-content: center;
	align-items: center;
}

section.right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #003542;
}

.img-right {
	width: 350px;
	padding: 20px;
}

.img-left {
	width: 250px;
}

input {
	width: 300px;
	background-color: #003542;
	border-color: white;
	margin-bottom: 20px;
	height: 40px;
	border-radius: 10px;
	color: white;
	padding-left: 10px;
	font-family: 'San Francisco', Arial, Helvetica, sans-serif;
}

input::placeholder {
	color: white;
}

.greeting {
	color: white;
	margin-bottom: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 24px;
}

@font-face {
	font-family: "San Francisco";
	font-weight: 400;
	src: url("/static/fonts/SF-Pro-Display-Medium.otf");
}

.greeting .greeting-text {
	margin-bottom: 0px;
}

button {
	width: 150px;
	height: 40px;
	border-radius: 10px;
	color: #003542;
	font-family: 'San Francisco', Arial, Helvetica, sans-serif;
	font-size: 20px;
}

form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#msg {
	margin-bottom: 20px;
	color: white;
}

.form-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}