* {
	margin: 0;
	padding: 0;
}

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

*:focus {
	outline-color: #f6821f;
}

html {
	font-size: 16px;
}

header {
	border-bottom: 1px solid rgb(121, 121, 121, 0.5);
	padding: 8px;
	grid-area: header;
}

.header-img {
	height: 42px;
	margin-left: 32px;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
	overflow-x: hidden;
	line-height: 1.4;
	height: 100vh;
	width: 100vw;
}

main {
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: grid;
	grid-template-columns: 1fr 2.5fr 2fr 1fr;
	grid-template-rows: min-content min-content;
	grid-template-areas: 'header header header header' '. block img .';
	grid-gap: 32px;
	align-items: center;


	@media screen and (max-width: 500px) {
		grid-gap: 8px;
		grid-template-columns: 1fr;
		grid-template-rows: min-content min-content auto;
		grid-template-areas: 'header' 'img' 'block';
		align-items: flex-start;
		justify-items: center;
	}
}

blockquote {
	display: block;
	font-size: 0.85rem;
	padding-left: 0.75rem;
	border-left: 4px solid #f6821f;
	margin-bottom: 1rem;
	margin-top: 0.5rem;
}

.img {
	grid-area: img;
	height: 50%;

	@media screen and (max-width: 500px) {
		height: 40vw;
	}
}

blockquote p {
	margin-bottom: 0.5rem;
}

.box {
	width: 100%;
	grid-area: block;

	@media screen and (max-width: 500px) {
		width: 90%;
	}
}

.input {
  display: block;
  margin-bottom: 8px;
	line-height: 1.6;
}

.input label,
.checklist > label {
	display: block;
	font-weight: 400;
}

label {
	font-size: 14px;
	color:rgb(121, 121, 121);
	font-weight: 100;
}

input {
	width: 100%;
	height: 42px;
	padding: 12px;
	border-radius: 5px;
	border: 1px solid rgb(121, 121, 121,0.5);
	outline: none;
	transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
	box-shadow: 0px 0px 20px -18px;
}

input:hover {
	border: 1px solid rgb(5, 109, 255);
	box-shadow: 0px 0px 20px -17px;
}

input:focus {
	border: 1px solid rgb(5, 109, 255);
}
.checklist li {
	list-style: none;
	padding-left: 0.5rem;
	margin-bottom: 0.25rem;
}

.checklist input {
	margin-right: 0.25rem;
}

button {
	width: 100%;
	display: block;
	cursor: pointer;
	margin-top: 1.5rem;
	background-color: rgb(5, 109, 255);
	border-radius: 5px;
	font-weight: bold;
	padding: 0.75rem;
	outline: none;
	border: none;
	color: #fff;
	font-size: 14px;
}

button:hover {
	background-color: rgb(121, 121, 121,0.5);
}

