@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600&display=swap');
*:not(input):not(textarea) {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	user-select: none;
}
* {
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html {
	position: relative;
	scroll-behavior: smooth;
	min-height: 100%;
}
body {
	position: relative;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
	font: 17px/19px "Nunito Sans";
	background: url(img/bgl.jpg) center center no-repeat;
	background-size: cover;
	font-weight: 400;
}
input {
	font: 17px/19px "Nunito Sans";
	padding: 7px 15px;
}
loginw {
	position: fixed;
	display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 500px;
	background-color: #eee;
	border-radius: 15px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
	border: 1px solid #333;
}
leftpart {
	position: absolute;
	display: block;
	left: 0px;
	width: 50%;
	bottom: 0px;
	top: 0px;
	background-color: #1f264b;
	border-radius: 10px 0 0 10px;
}
leftpart::after {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 230px;
	content: "";
	background: url(img/logo.png) center center no-repeat;
	background-size: contain;
}
rightpart {
	position: absolute;
	display: block;
	right: 0px;
	width: 50%;
	top: 0px;
	bottom: 0px;
	padding: 40px;
}
p {
	position: relative;
	display: block;
	margin-bottom: 20px;
}
h1 {
	font-weight: 400;
	font-size: 30px;
	line-height: 35px;
	border-bottom: 1px solid #9b2fcf;
	margin-bottom: 30px;
}
inputline {
	position: relative;
	display: block;
	margin-top: 8px;
}
inputline input {
	position: relative;
	display: block;
	width: 100%;
	border-bottom: 2px solid #ccc;
	transition: border-color 0.5s;
}
inputline::before {
	position: relative;
	display: block;
	content: attr(caption);
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
}
inputline input:focus {
	border-color: #9b2fcf;
}
submitbtn {
	position: absolute;
	display: block;
	right: 40px;
	bottom: 40px;
	padding: 15px 30px;
	background-color: #a744d6;
	font-weight: 600;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.5s;
}
submitbtn:hover {
	background-color: #5518ac;
}
errmsg {
	position: relative;
	display: block;
	opacity: 0;
	margin-top: 20px;
	background-color: #ffbebe;
	padding: 15px;
	border-radius: 5px;
	transition: opacity 0.5s;
	pointer-events: none;
	font-size: 16px;
	line-height: 17px;
}
errmsg[show] {
	opacity: 1;
	pointer-events: all;
}