@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
body{
	font-family: 'Roboto', sans-serif;
	background: #FFF;
}
*{
	padding: 0px;
	margin: 0px;
}
.pad0{padding: 0px;}

.container{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}
.container:before{
	content: '';
	position: absolute;
	width: 2000px;
	height: 2000px;
	border-radius: 50%;
	background: linear-gradient(-45deg, #5a3078, #281039);
	top: -10%;
	right: 48%;
	transform: translateY(-50%);
}
.loginform{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.login{
	position: absolute;
	top: 43%;
	left: 75%;
	transform: translate(-50%, -50%);
	width: 50%;
	z-index: 1;
}

form{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.title{
	font-size: 1.8em;
	font-weight: 600;
	margin-bottom: 10px;
}
.input-filed{
	max-width: 300px;
	width: 100%;
	height: 45px;
	background-color: #f0f0f0;
	margin: 10px 0;
	border-radius: 55px;
	display: grid;
	grid-template-columns: 15% 85%;
	padding: 0.4rem;
}
.input-filed i{
	text-align: center;
	line-height: 45px;
	color: #acacac;
	font-size: 1.2em;
}
.input-filed input{
	background: none;
	outline: none;
	border: none;
	box-shadow: none;
	line-height: 1;
	font-weight: 600;
	font-size: 1em;
	color: #333;
}
.input-filed input::placeholder{
	color: #aaa;
	font-weight: 400;
}
.batt{
	width: 150px;
	height: 49px;
	border: none;
	outline: none;
	border-radius: 49px;
	cursor: pointer;
	background-color: #5a3078;
	color: #FFF;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
	text-transform: uppercase;
}
#error{
	border-radius: 50px;
}

.panel-container{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: grid;
	grid-template-columns: 15% 85%;
	padding: 0.4rem;
}
.logo{
	position: absolute;
	top: 43%;
	left: 40%;
	transform: translate(-50%, -50%);
	width: 50%;
}
.logo img{
	width: 300px;
	border-radius: 100%;
	padding: 5px;
}






@media(max-width:800px)
{
	.container{
		min-height: 500px;
		height: 100vh;
	}
	.container:before{
		width: 500px;
		height: 500px;
		transform: translateY(-50%);
		top: -25%;
		right: -20%;
	}
	.login{
		width: 100%;
		left: 50%;
		top: 55%;
	}
	form{
		width: 100%;
	}
	.logo{
		top: 13%;
		left: 57%;
	}
	.logo img{
		width: 100px;
		border-radius: 100%;
		padding: 3px;
	}
}