* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background: #0a2431;
	overflow: hidden;
	font-family: sans-serif;
	color: #fff;
}


.grid {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: 40px 40px;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	animation: moveGrid 10s linear infinite;
}


@keyframes moveGrid {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 40px 40px;
	}
}

.particles {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 5px;
	height: 5px;
	background-color: cyan;
	border-radius: 50%;
	opacity: 0.7;
	animation: moveParticles 5s linear infinite;
}

@keyframes moveParticles {
	from {
		transform: translateY(100vh);
		opacity: 0;
	}

	to {
		transform: translateY(-10vh);
		opacity: 1;
	}
}



.img {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.img img {
	width: 500px;
}


.login-content img {
	height: 185px;
}

.login-content h3 {
	margin: 25px 0;
	color: #d2e8ef;
	text-transform: uppercase;
	font-size: 22px;
}

.login-content .input-div {
	position: relative;
	display: grid;
	grid-template-columns: 7% 93%;
	margin: 25px 0;
	padding: 5px 0;
	border-bottom: 2px solid #d9d9d9;
}


.login-content .input-div.one {
	margin-top: 0;
}


.i {
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}


.i i {
	transition: .3s;
}


.input-div>div {
	position: relative;
	height: 45px;
}


.input-div>div>h5 {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #d2e8ef;
	font-size: 18px;
	transition: .3s;
}


.input-div:before,
.input-div:after {
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: #3ae3fb;
	transition: .4s;
}


.input-div:before {
	right: 50%;
}

.input-div:after {
	left: 50%;
}

.input-div.focus:before,
.input-div.focus:after {
	width: 50%;
}

.input-div.focus>div>h5 {
	top: -5px;
	font-size: 15px;
}

.input-div.focus>.i>i {
	color: #3ae3fb;
}

.input-div>div>input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 1.2rem;
	color: #d2e8ef;
	font-family: 'poppins', sans-serif;
}

.input-div.pass {
	margin-bottom: 4px;
}

a {
	display: block;
	text-align: right;
	text-decoration: none;
	color: #fff560;
	font-size: 0.9rem;
	transition: .3s;
	font-weight: 600;
}

a:hover {
	color: #ffffff;
}


.btn {
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-image: linear-gradient(to right, #32a1be, #3883d3, #8c32be);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 2rem 0;
	cursor: pointer;
	transition: .5s;
}


.btn:hover {
	background-position: right;
}

.login-content h2 {
	font-size: 33px;
	margin: 30px 0;
	color: #ffe200;
	font-weight: 900;
}



.login-content h3 {
	font-size: 20px;
	margin: 25px 0;
}


.img img {
	width: 400px;
}