/* ------------------- General ---------------------------------------------- */
html {
	scroll-behavior: smooth;
}

body {
	font-family: Noto Sans;
	color: rgb(255, 255, 255);
	margin: 0;
	background-color: #525252;
	background-image: url('../img/child_background.svg');
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 100px;
	align-items: center;
	min-width: 100%;
}

html,
body {
	overflow-x: hidden;
}

/* --------------------------- Heder ---------------------------------------- */

.burger-menu__btn-1 {
	border: 1px solid #cfcfcf;
}

.highlight {
	background-color: red;
	color: white;
}
header {
	background-color: #cfcfcf;
	height: 100px;
	width: 100%;
}

.header__container {
	max-width: 1140px;
	max-height: 90px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	visibility: hidden;
	display: none;
}

.header__name {
	padding-top: 15px;
	color: rgb(0, 0, 0);
	font-family: Kodchasan;
	font-size: 32px;
	font-weight: 400;
	line-height: 112.75%;
	letter-spacing: 0%;
	text-align: left;
	width: 364px;
	height: 100px;
}

.header__nav-menu {
	width: 702px;
	height: 43px;
}

.header__menu {
	list-style: none;
	display: flex;
	gap: 15px;
	margin: 0;
	padding: 0;
}

.header__menu li {
	background-color: rgb(82, 82, 82);
	border-radius: 70px;
	padding: 5px 15px;
	width: 129px;
	height: 42px;
}

.header__menu li a {
	color: rgb(255, 255, 255);
	text-decoration: none;
	font-family: Kodchasan;
	font-size: 32px;
	font-weight: 400;
	line-height: 42px;
	letter-spacing: 0%;
	text-align: center;
}

.burger-menu {
	display: none;
	visibility: hidden;
}

.burger-menu span {
	background-color: rgb(82, 82, 82);
	border-radius: 70px;
	padding: 5px 15px;
	width: 100px;
	height: 42px;
}

.burger-menu span a {
	color: rgb(255, 255, 255);
	text-decoration: none;
	font-family: Kodchasan;
	font-size: 32px;
	font-weight: 400;
	line-height: 42px;
	letter-spacing: 0%;
	text-align: center;
}

/* --------------------------- Main ----------------------------------------- */
.auth-container {
	background-color: #8a8a8a;
	padding-top: 5px;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 10);
	width: 100%;
	max-width: 500px;
}

h1 {
	margin-bottom: 20px;
	font-size: 24px;
	text-align: center;
}

form label {
	display: block;
	margin-top: 10px;
	font-weight: bold;
}

input[type=\"text\"],
input[type=\"email\"] {
	width: 100%;
	padding: 8px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.gender-options label {
	margin-right: 15px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.full-width {
	grid-column: span 2;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='date'] {
	border: 1px solid rgb(167, 168, 168);
	border-radius: 8px;
	padding: 10px;
	font-size: 16px;
}

.gender-options label {
	margin-right: 15px;
}

.button {
	background-color: #4d4d4d;
	color: white;
	border: none;
	border-radius: 8px;
	padding: 10px;
	font-size: 16px;
	cursor: pointer;
}

.button:hover {
	background-color: #727272;
}

.full-width {
	grid-column: span 2;
}

.map {
	width: 100%;
	height: 400px;
	margin: auto;
	margin-top: 15px;
}
/* --------------------------- Footer --------------------------------------- */
footer {
	background-color: #cfcfcf;
	height: 130px;
	width: 100%;
}

footer input[type='text'] {
	padding: 0;
}

.footer__container {
	max-width: 1140px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__content {
	padding-bottom: 20px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	column-gap: 0;
	align-items: end;
	visibility: visible;
}

.footer__name {
	padding-top: 20px;
	width: 364px;
	height: 110px;
	color: rgb(0, 0, 0);
	font-family: Kodchasan;
	font-size: 32px;
	font-weight: 400;
	line-height: 112.75%;
	letter-spacing: 0%;
	text-align: left;
}

.footer__creator {
	color: rgb(0, 0, 0);
	font-family: Kodchasan;
	font-size: 24px;
	font-weight: 400;
	line-height: 112.75%;
	letter-spacing: 0%;
	text-align: right;
	width: 382px;
	height: 38.82px;
}

.footer__nav-menu {
	max-width: 500px;
	display: flex;
	justify-content: space-around;
	flex-direction: row;
	align-items: center;
}

.search-form {
	text-align: right;
	background: rgb(167, 168, 168);
	border-radius: 20px;
	padding-right: 5px;
	margin-right: 10px;
	width: 382px;
	height: 41px;
}

.search-input {
	border: none;
	background: none;
	color: white;
	padding: 5px;
	margin-right: 10px;
	outline: none;
}

.search-button {
	background: none;
	border: none;
	cursor: pointer;
	color: rgb(255, 255, 255);
	font-family: Kodchasan;
	font-size: 24px;
	font-weight: 400;
	line-height: 153.39%;
	letter-spacing: 0%;
}

.footer__creator-links {
	display: flex;
	gap: 10px;
	flex-direction: row;
}

.footer__creator-links a img {
	display: block;
}
