*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	margin: 2rem;
	background-color: black;
}

input,
select,
textarea {
	/* display: block; */
	padding: 1rem;
	margin: 0.2rem 0;
}

label {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	text-transform: uppercase;
	color: white;
}

p {
	font-size: 1.8rem;
	color: white;
}

h1 {
	font-family: 'Alatsi', Helvetica, sans-serif;
	color: white;
	font-weight: bold;
	font-size: 10rem;
	margin-top: 3rem;
}

ol {
	list-style: decimal-leading-zero;
}

a {
	text-decoration: none;
}

.form__area {
	color: white;
	margin-top: 2rem;
	border: 0.2em solid rgba(255, 255, 255, 0.5);
	padding: 2rem;
}

.container {
	height: 60vh;
	display: grid;
	grid-template-columns: 1fr 10fr 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.header {
	grid-area: 1 / 2 / 2 / 3;
	margin-bottom: 2rem;
}

.main {
	grid-area: 2 / 2 / 3 / 3;
}

.footer {
	grid-area: 3 / 2 / 4 / 3;
}

.form__area {
	display: flex;
	flex-wrap: wrap;
}

.form__area--main {
	width: 100%;
}

.form__area--right {
	width: 50%;
}

.input__field {
	background-color: black;
	border: 0.1rem solid;
	color: rgba(255, 255, 255, 0.8);
	padding: 0.5rem 2rem;
	text-decoration: none;
	margin: 0.4rem 0.2rem;
	font-size: 1.5rem;
}

.input__submit {
	margin-top: 1.5rem;
	width: 100%;
	color: white;
	align-content: center;
}

.input__submit--button {
	background-color: rgb(0, 0, 0);
	border: 0.2rem solid;
	color: white;
	padding: 1.6rem 41.5rem;
	text-decoration: none;
	margin: 0.4rem 0.2rem;
	cursor: pointer;
	font-size: 2rem;
	text-transform: uppercase;
}

.input__submit--button:hover {
	background-color: white;
	color: black;
}

.input__submit--button:active {
	font-size: 2.5rem;
	padding: 1.3rem 40.5rem;
}

.hidden {
	display: none;
}

input[type='radio'],
input[type='checkbox'] {
	position: absolute;
	width: 2rem;
	height: 2rem;
}

input[type='radio'] + label,
input[type='checkbox'] + label {
	display: block;
	padding: 0.5em;
	padding-top: -1.5rem;
	padding-left: 2em;
}

input[type='radio']:focus + label,
input[type='checkbox']:focus + label {
	color: rgb(255, 255, 255);
	outline: 1px dotted rgb(255, 255, 255);
}

.footer {
	color: white;
	text-align: right;
	margin-top: 3rem;
	font-size: 1.5rem;
}

.name {
	margin-top: 0.5rem;
}

.message {
	padding-top: 3rem;
	font-size: 3.5rem;
}

.message--info {
	margin-top: 1rem;
}

.input__name {
	font-size: 2rem;
	text-transform: capitalize;
	margin: 0 1rem 0 0;
}

.white {
	color: white;
}

.green {
	color: greenyellow;
}

.orange {
	color: orange;
}

.red {
	color: red;
}
