form {
	display: flex;
	flex-direction: row;
	gap: 2px;
	width: 100%;
}

form input[type="email"] {
	width: 100%;
	height: 3.5rem;
	padding: 0 0.75rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 120%;
	background: #EBEBEB;
	border: none;
}
form input[type="email"]::placeholder {
	color: var(--secondary);
}
form input[type="email"]:focus {
	outline: none;
}

form input[type="submit"] {
	width: 3.5rem;
	min-width: 3.5rem;
	max-width: 3.5rem;
	height: 3.5rem;
	min-height: 3.5rem;
	max-height: 3.5rem;
	border: none;
	font-weight: 500;
	font-size: 2rem;
	cursor: pointer;

	transition: var(--transition);
	background: var(--primary);
	color: var(--background);
}
form input[type="submit"]:hover {
	opacity: 0.8;
}
form input[type="submit"]:active {
	opacity: 0.6;
}

section {
	margin-top: 1rem;
}

ol {
    list-style: none;
    counter-reset: item;
    padding-left: 1rem;
}

ol li {
    counter-increment: item;
    position: relative;
}

ol li a {
	text-decoration: underline;
}

ol li::before {
    content: counter(item);
    position: absolute;
    left: -1rem;
    top: 0.375rem;
    font-size: 1rem;
	font-weight: 600;
    line-height: 1;
	color: var(--primary);
}
