
.login-container {
	width: 100%;
	min-height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding: 15px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}

.login-container::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.login-wrap {
	text-align: center;
	width: 360px;
	background: #fff;
	overflow: hidden;
	padding: 40px;
	margin-top: 100px;
}

.login-logo-wrap {

}

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

.login-form {
	display: flex;
	gap: 2em;
}

.login-inputs {
	flex: 2;
}

.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: 32px;
	background: transparent;
	padding: 0 10px;
	border: 1px solid lightgray;
	border-radius: 5px;
}

.login-btn-wrap {
	flex: 1;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.login-btn {
	cursor: pointer;
	font-size: 13pt;
	font-weight: bold;
	padding: 5px;
	width: 120px;
	height: 74px;
	color: var(--theme-color-login-button-text);
	background-color: var(--theme-color-login);
	border: 1px solid var(--theme-color-login-border);
	padding-top: 4px;
	text-align: center;
	border-radius: 5px;
}