:root{
	--main-color: #0B5ED7;
}

body{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: linear-gradient(180deg, rgba(13,20,54,1) 0%, rgba(40,57,119,1) 30%, rgba(63,69,125,1) 50%, rgba(40,57,119,1) 70%, rgba(20,36,93,1) 100%);
	font-family: 'Jost', sans-serif;
	background-position: center;
	background-size: cover;
	backdrop-filter: blur(5px);
}

.main{
	width: 400px;
	height: 670px;
	background-color: transparent;
	opacity: 0.95;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
}
.signup{
	position: relative;
	width:100%;
	height: 100%;
}
label{
	color: #fff;
	font-size: 2.3em;
	justify-content: center;
	display: flex;
	margin: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: .5s ease-in-out;
}
.input{
	position: relative;
	display: flex;
}
.input span{
	position: absolute;
	left: 300px;
	top:20px
}
.input span i{
	color: var(--main-color);
}
.input span .fa-eye{
	cursor: pointer;
	transition: 0.2s;
}
.input span .fa-eye:hover{
	cursor: pointer;
	font-size: 1.1em;
}
input{
	width: 60%;
	height: 20px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	margin: 8px auto;
	padding: 10px;
	border: none;
	outline: none;
	border-radius: 5px;
}

button{
	width: 60%;
	height: 40px;
	margin: 10px auto;
	justify-content: center;
	display: block;
	color: #fff;
	background: var(--main-color);
	font-size: 1em;
	font-weight: bold;
	margin-top: 20px;
	outline: none;
	border: none;
	border-radius: 5px;
	transition: .2s ease-in;
	cursor: pointer;
}
button:hover{
	background: #0066ff;
}

.error{
	text-align:center;
	color:var(--main-color) ;
	margin-right: 60px;
	margin-left: 60px;
	width: 50%;
}
.error p{
	text-align:left;
	color: #000000 ;
	margin:0 60px;
	width: 80%;
}