body,
html {
	margin: 0;
	padding: 0;
}

.app {
	position: relative;
	display: flex;
	width: 100vw;
	height: 100vh;
	align-items: center;
	justify-content: center;
}

.container {
	width: 60%;
	padding: 18px;
	border-radius: 0px;
	border: 1px none #000;
	box-shadow: 1px 1px 3px 0px rgba(2, 2, 2, 0.23);
	background-color: rgba(249, 249, 249, 1.00);
	position: absolute;
	z-index: 999;
}

.upper {
	display: flex;
	justify-content: space-between;
}

.img {
	width: 123px;
	height: 40px;
}

.form {
	display: flex;
	flex-direction: column;
}

textarea,
input {
	width: calc(100% - 24px);
	font-size: 16px;
	color: #747474;
	border: 1px solid #ccc;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea {
	height: 220px;
	padding: 6px 10px;
	font-weight: 500;
}

input {
	height: 38px;
	padding: 0px 10px;
	clear: both;
}

textarea:focus,
input:focus {
	border: 1px solid #999;
}

.field {
	padding: 10px 0;
}

.close {
	position: absolute;
	left: auto;
	right: 0px;
	bottom: auto;
	top: 0px;
	padding: 8px;
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	line-height: 36px;
	border: 1px none #fff;
	border-radius: 0px;
	background-color: rgba(0, 183, 205, 1.00);
	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.23);
	box-shadow: 1px 1px 3px 0px rgba(2, 2, 2, 0.23);
	cursor: pointer;
}

.submit {
	/* margin-top: 30px; */
	/* padding: 5px 15px; */
	min-height: 2.5em;
	color: #333;
	font-size: 1em;
	font-weight: 600;
	line-height: 2.4em;
	background-color: #eee;
	border: 1px solid #ddd;
	cursor: pointer;
}

.submit:hover {
	background-color: rgb(221, 221, 221);
}

.label {
	display: none;
	font-size: 12px;
	color: #990000;
	cursor: default;
	margin: 1em 0 0 0;
}

.error .label {
	display: block;
}

.error input,
.error textarea {
	border: 1px solid #990000;
}

@media (max-width: 1920px) {
	.container {
		width: 60%;
		padding: 18px;
	}
}

@media (max-width: 767.98px) {
	.container {
		width: 85%;
		padding: 20px 20px 40px 20px;
	}
}