:root {
	--accent-color: #ffa800;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	height: 100vh;
	overflow: hidden;
	font-family: "Poppins", sans-serif;
}

h1,
h2 {
	display: inline-block;
	position: relative;
	font-size: 42px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 5px;
}

h1::before,
h2::before {
	content: "";
	position: absolute;
	bottom: 0;
	height: 20px;
	width: 100%;
	background-color: rgb(255 168 0 / 25%);
}

nav {
	max-width: 1495px;
	width: 100%;
	margin: auto;
}

.d-flex {
	display: flex;
}

.gap-1 {
	gap: 0.5rem;
}

.mb-5 {
	margin-bottom: 8rem;
}

.fz-18px {
	font-size: 18px;
}

.col {
	width: 50%;
}

.container {
	width: 100%;
	max-width: 750px;
	margin-left: auto;
	padding: 0 25px;
}

.col.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.py-2 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.mt-1 {
	margin-top: 1rem;
}

.img-col img {
	object-fit: cover;
	width: 100%;
	height: 100vh;
}

input,
select,
textarea {
	display: block;
	border: 1px solid #dedede;
	border-radius: 4px;
	padding: 0.75rem;
	outline: none;
	background: transparent;
	font-size: 1rem;
	width: 100%;
	max-width: 100%;
	line-height: 1;
	font-family: inherit;
	color: inherit;
	outline: none;
	transition: all 300ms ease;
	text-align: center;
	max-width: 400px;
	width: 380px;
}

input:hover,
select:hover,
textarea:hover {
	border-color: var(--accent-color);
}

input:focus,
select:focus,
textarea:focus,
button:hover {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgb(255 168 0 / 25%);
}

button {
	margin-bottom: 0;
	font-family: var(--font-special);
	font-weight: normal;
	letter-spacing: 0.015em;
	font-size: 1.1rem;
	border: 1px solid var(--accent-color);
	background: var(--accent-color);
	color: #fff;
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	border-radius: 4px;
	font-weight: 600;
	font-family: inherit;
	font-size: 1rem;
	text-transform: none;
	padding: 0.75rem 1.25rem;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	line-height: 1;
	transition: all 300ms ease;
}

@media screen and (max-width: 768px) {
	.img-col {
		width: 0;
	}
}

@media screen and (max-width: 599px) {
	body {
		overflow-y: auto;
	}

	.container.col .mb-5 {
		margin-top: 140px;
		margin-bottom: 80px;
	}

	input {
		width: 100%;
	}
}
