@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}
body {
	padding: 30px 0;
	background: #fff;
}
hr {
	margin: 24px 0;
}

h1 {
	font-size: 24px;
	margin-bottom: 24px;
	color: #000;
	font-weight: 600;
}

.form-group {
	margin-bottom: 16px;
}
.form-group h2 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 16px;
}
input[type="text"], input[type="date"] {
   	font-family: inherit;
   	font-size: 16px;
   	padding: 8px 12px;
   	border-radius: 6px;
   	border: 1px solid #818181;
   	display: block;
   	width: 100%;
}
form {}
form select {
	font-family: inherit;
   	font-size: 16px;
   	padding: 8px 12px;
   	border-radius: 6px;
   	border: 1px solid #818181;
   	display: block;
   	width: 100%;
}
form select option {
	padding: 8px 12px;
}
form label {
	display: block;
	margin-bottom: 6px;
}
 
form button {
	display: inline-block;
	padding: 16px;
	max-width: 300px;
	width: 100%;
	color: #fff;
	background: #000;
	border-radius: 16px;
	font-family: inherit;
	font-size: 16px;
	border: none;
	outline: none;
}
form textarea {
	font-family: inherit;
   	font-size: 16px;
   	padding: 8px 12px;
   	border-radius: 6px;
   	border: 1px solid #818181;
   	display: block;
   	width: 100%;
   	resize: none;
   	min-height: 150px;
}
.character-counter {
	margin-top: 6px;
	color: #666;
	font-size: 14px;
	text-align: right;
}
.form-status {
	margin-bottom: 12px;
	display: none;
	font-size: 18px;
	font-weight: 600;
}
