
.login-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	width: 100%;
	background: var(--theme-color-login);
}

.login-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	background: #fff;
	height: 80px;
	padding-top: 40px;
}

.login-logo {
	max-width: 300px;
	margin-bottom: 40px;
}

.login-input-wrap {
	margin-bottom: 12px;
	position: relative;
	width: 100%;
	position: relative;
	background-color: #fff;
}

.login-input {
	box-sizing: border-box;
	font-size: 14px;
	color: #4b2354;
	line-height: 1.2;
	display: block;
	width: 100%;
	height: 35px;
	background: transparent;
	padding: 0 10px;
	border: 3px solid black;
	border-radius: 5px;
}

.login-btn {
	cursor: pointer;
	font-size: 13pt;
	font-weight: bold;
	padding: 5px;
	width: 180px;
	height: 35px;
	color:#000;
	background-color: var(--theme-color-login);
	border: 3px solid black;
	padding-top: 4px;
	text-align: center;
	border-radius: 5px;
}