body {
	background: #eee;
}

.encomenda-img {
	width: 100% !important;
    height: 33% !important;
    object-fit: cover;
}

#instructions {
	width: 100%;
	text-align: center;
	padding: 3em 0;
}

#instructions h3 {
	letter-spacing: 0;
	font-size: 18pt;
	font-weight: bold;
}

#instructions .blocks {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

#instructions .blocks div {
	width: 24em;
	padding: 2em 4em;
}

#instructions .blocks div img {
	filter: brightness(0.25);
	width: 4em;
	height: 4em;
}

#instructions .blocks div span {
	font-family: AvenirNext;
	font-weight: 400;
	font-size: 12pt;
	letter-spacing: 0;
	color: rgb(0.25, 0.25, 0.25);
}

#registration-form {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	max-width: 50em;
	margin: 0 auto 4em auto;
	color: #000;
	background: #fff;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 2px solid #ddd;
	padding: 6em 0 10em 0;
	font-family: AvenirNext;
	font-size: 12pt;
}
#registration-form > .title {
	letter-spacing: 0.2em;
	font-weight: 600;
	font-size: 1.5em;
	text-transform: uppercase;
}
#registration-form .subtitle {
	margin-top: 1em;
	color: #888;
	letter-spacing: 0;
	font-weight: 500;
	font-size: 1.2em;
}
#registration-form > form {
	display: grid;
	justify-content: center;
	justify-items: center;
	gap: 1em 2em;
	grid-template-columns: 1fr 1fr;
	/* margin: 2em 0; */
}
#registration-form > form > .center {
	grid-column: 1 / 3;
}

.input {
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	color: #000;
	background: #fff;
	width: 16em;
	max-width: 16em;
}
.input input,
.input select,
.input textarea {
	flex: 1;
	flex-basis: 2em;
	height: 2em;
	resize: none;
	border: solid 1px rgb(0, 0, 0, 0.5);
	outline: none;
	transition: all 0.25s ease-in-out;
	padding: 0 0.25em;
	color: #000;
	background: #fff;
}
.input .button:active {
	background: #f0f0f0;
}
.input .button:focus {
	/* box-shadow: none; */
}
.input input,
.input textarea {
	padding: 0 0.5em;
}
.input input:focus,
.input select:focus,
.input textarea:focus {
	outline: none;
	/* box-shadow: 0 0 4px #3af; */
	border-color: #000;
	transition: all 0.1s ease-in-out;
}
.input input[readonly],
.input select[readonly],
.input textarea[readonly] {
	color: #888;
	background: #fff;
}
.input span {
	display: block;
	font-weight: bold;
	padding-left: 0.5em;
}
.input.about {
	grid-row: 2 / 6;
	grid-column: 2 / 3;
}
.input select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	background:
		url("../../images/icons/select.svg")
		96%
		50%
		no-repeat;
	background-size: 0.75em;
}
.input .invalid {
	border-color: #d11f2e;
	/* box-shadow: 0 0 4px #f22; */
	transition: all 0.1s ease-in-out;
}
.input > .multi-content {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
.input > .multi-content > .separator {
	flex: 0;
	min-width: 1em;
	max-width: 1em;
}
.input > .multi-content > .expand {
	min-width: 0;
	flex: 1 1 0;
}
.input > .multi-content > .wide {
	flex-basis: 3em;
	overflow: hidden;
}
.input > .multi-content > .no-grow {
	flex-grow: 0;
}

.input input:disabled,
.input select:disabled,
.input textarea:disabled {
	border-color: rgba(0, 0, 0, 0.25) !important;
}

#sobre {
	color: #000;
}

#submit-button {
	margin-top: 3em;
}

/* Mobile layout */
@media screen and (max-width: 36em) {

	#registration-form > form {
		display: flex;
		flex-flow: column nowrap;
		justify-content: center;
		align-items: center;
	}
	#registration-form > form > .center {
		grid-column: initial;
	}
	.input.about {
		height: 17.25em;
	}
	.input.about > textarea {
		overflow-y: scroll !important;
	}
	.input {
		margin-bottom: 11px;
	}
}
