body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-image: url('../img/background.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login {
	background-image: url('../img/loginBackground.png');
	width: 25rem;
	height: 34rem;
	background-size: cover;
}

.header {
	width: 100%;
	height: 10%;
	box-sizing: border-box;
	padding: 0.8rem 0.5rem 1.2rem 0rem;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.header img:nth-of-type(1) {
	height: 100%;
	cursor: pointer;
}

.header img:nth-of-type(2) {
	height: 200%;
	cursor: pointer;
	display: none;
	position: relative;
	right: -0.625rem;
}

.logo {
	display: flex;
	align-items: center;
	height: 40%;
	flex-direction: column;
	justify-content: center;
}

.logo img {
	width: 15rem;
	height: 4.37rem;
	position: relative;
	left: 4.37rem;
}

.logo p {
	color: #999999;
	font-weight: bold;
}

.main {
	width: 100%;
	height: 50%;
	box-sizing: border-box;
	padding: 2.5rem;
}

.inputegion {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}

.accountPassword {
	height: 2rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #999999;
	align-items: center;
	position: relative;
}

.accountPassword img {
	height: 90%;
}

.accountPassword label {
	color: #999999;
	width: 85%;
	position: absolute;
	right: 0;
	top: 20%;
	font-size: 1rem;
	z-index: -1;
}

.accountPassword input {
	font-size: 1.25rem;
	color: #999999;
	caret-color: #999999;
	height: 100%;
	width: 85%;
	border: none;
	outline: none;
	box-shadow: none;
	background-color: transparent;
}

.accountPassword input:focus~label {
	display: none;
}

.loginbutton {
	color: #999999;
	font-size: 1rem;
	border-radius: 0.3rem;
	background-color: rgba(0, 0, 0, 0.5);
	font-weight: bold;
	border: none;
	width: 80%;
	height: 3rem;
	cursor: pointer;
}

.loginbutton:hover {
	background-color: rgba(0, 0, 0, 0.3);
}

.qrcode {
	display: none;
	width: 12.5rem;
	height: 12.5rem;
	margin: -3.125rem auto;
	background-color: #ffffff;
	box-sizing: border-box;
	/* padding: 0.625rem; */
}

.qrcode div {
	width: 100%;
	height: 100%;
	padding: 10px;
}

.qrcode p {
	text-align: center;
	font-size: 1rem;
	color: #ffffff;
}