.superView {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loginFormContainer {
	width: 70%;
	height: 556px;
	display: flex;
	flex-direction: column;
}

.loginFormContainer h1 {
	width: 100%;
	height: 100px;
	font-family: "pretendard-r", sans-serif;
	font-size: 44px;
	text-align: center;
	line-height: 100px;
}

.loginFormContainer h2 {
	width: 100%;
	height: 80px;
	font-family: "pretendard-r", sans-serif;
	font-size: 32px;
	color: rgb(235, 86, 108);
	padding: 0 12px;
	line-height: 80px;
}

.loginFormContainer form {
	width: 100%;
	height: 376px;
	display: flex;
	flex-direction: column;
}

.loginFormContainer form input {
	width: 100%;
	height: 120px;
	background-color: #e0dfdff1;
	padding: 0 20px;
	box-sizing: border-box;
	font-family: "pretendard-r", sans-serif;
	font-size: 36px;
	outline: none;
	border-radius: 12px;
	margin-bottom: 12px;
	border: none;
}

.loginFormContainer form input[type="submit"] {
	font-family: "pretendard-r", sans-serif;
	color: #fff;
	font-size: 36px;
	background-color: #0B9B20;
	margin-top: 12px;
	height: 100px;
	margin-bottom: 0;
}