.body {
	display: flex;
	align-items: center;
	justify-content: center;
}

.body .container {
	width: 45%;
	padding: 4vh 5%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.body .container h1 {
	font-size: 3.5vh;
	color: #fff;
	margin: 0;
	margin-bottom: 1vh;
	font-weight: 700;
}

.body .container > p:first-of-type {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 3vh;
}

.body .container p {
	font-size: 1.75vh;
	margin: 0;
	margin-bottom: 2vh;
}

.body .container p.positive {
	color: #4ade80;
	background: rgba(74, 222, 128, 0.1);
	padding: 1.5vh 2vh;
	border-radius: 10px;
	border: 1px solid rgba(74, 222, 128, 0.2);
}

.body .container p.negative {
	color: #f87171;
	background: rgba(248, 113, 113, 0.1);
	padding: 1.5vh 2vh;
	border-radius: 10px;
	border: 1px solid rgba(248, 113, 113, 0.2);
}

.body .container .line {
	display: grid;
	width: 100%;
	grid-auto-rows: 1fr;
	grid-column-gap: 3%;
	grid-template-columns: repeat(2, 1fr);
	text-align: center;
	margin-bottom: 2vh;
}

.body .container .line input {
	-webkit-appearance: none;
	color: #fff;
	width: 100%;
	font-size: 1.75vh;
	padding: 1.5vh 3%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	outline: none;
	font-family: 'Noto Sans KR', sans-serif;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.body .container .line input:focus {
	border-color: var(--theme-color, rgba(255, 255, 255, 0.3));
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 20px rgba(var(--theme-color-rgb, 255, 255, 255), 0.1);
}

.body .container .line input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.body .container textarea {
	-webkit-appearance: none;
	width: 100%;
	min-height: 15vh;
	resize: none;
	font-family: 'Noto Sans KR', sans-serif;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 1.75vh;
	color: #fff;
	outline: none;
	padding: 1.5vh 3%;
	margin-bottom: 2vh;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.body .container textarea:focus {
	border-color: var(--theme-color, rgba(255, 255, 255, 0.3));
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 20px rgba(var(--theme-color-rgb, 255, 255, 255), 0.1);
}

.body .container textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.body .container input[type=submit] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1vh;
	font-size: 1.75vh;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, var(--theme-color) 0%, rgba(var(--theme-color-rgb, 99, 102, 241), 0.8) 100%);
	outline: none;
	border: none;
	padding: 1.5vh 4%;
	border-radius: 50px;
	margin-bottom: 2vh;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 5px 20px rgba(var(--theme-color-rgb, 99, 102, 241), 0.3);
}

.body .container input[type=submit]:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(var(--theme-color-rgb, 99, 102, 241), 0.4);
}

.body .container input[type=submit]:active {
	transform: translateY(-1px);
}

.body .container .bottom {
	width: 100%;
	text-align: center;
}

.body .container .bottom div {
	display: inline-block;
}

/* reCAPTCHA styling */
.body .container .g-recaptcha {
	display: inline-block;
	margin-bottom: 2vh;
}

@media screen and (max-width: 600px), (orientation : portrait) {
	.body .container {
		width: 90%;
		padding: 4vh 5%;
	}

	.body .container .line {
		display: grid;
		width: 100%;
		grid-row-gap: 2vh;
		grid-template-columns: repeat(1, 1fr);
	}
}