@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&amp;display=swap');

* {
	box-sizing: border-box;
}

body {
	font-family: 'Inter';
/*	height: 100vh; */
	background: #a3d2ed;
	display: flex;
	align-items: center;
	justify-content: center;
}

form {
	background: white;
	padding: 30px;
	width: 550px;
	max-width: calc(100% - 20px);
	border-radius: 10px;
}

.form-element {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.form-element span {
	margin-bottom: 5px;
}

input, textarea {
	border: 1px solid #afafaf;
    line-height: 2;
    padding: 7px;
    border-radius: 5px;
	font-family: 'Inter';
    font-size: 1em;
}

form button {
	width: 100%;
	padding: 20px;
	color: white;
	background: #2196f3;
	border-radius: 5px;
	border: none;
	font-size: 18px;
	margin-top: 10px;
	cursor: pointer;
}

h2 {
	text-align: center;
}