form
{
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	backdrop-filter: hue-rotate(-10deg) blur(15px) saturate(80%) opacity(90%) drop-shadow(4px 4px 10px #1845AD);
	border: 2px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 40px rgba(8,7,16,0.6);
	padding: 35px;
	
}

form *
{
	font-family: 'Poppins', sans-serif;
	color: #FFFFFF;
	letter-spacing: 0.5px;
	outline: none;
	border: none;
}

form h3
{
	font-size: 32px;
	font-weight 500;
	line-height: 42px;
	text-align: center;
}

form h4
{
	font-size: 15px;
	font-weight: 300;
	line-height: 20px;
	text-align: center;
	color: #eaf0fb;
	margin-top: 15px;
	margin-bottom: 30px;
}

form h5
{
	font-size: 15px;
	font-weight: 300;
	line-height: 20px;
	text-align: left;
	color: #eaf0fb;
	margin-top: 20px;
}

form h6
{
	font-size: 15px;
	font-weight: 300;
	line-height: 20px;
	text-align: left;
	color: #eaf0fb;
}

label
{
	display: block;
	margin-top: 30px;
	font-size: 16px;
	font-weight: 600;
}

input
{
	display: block;
	height: 50px;
	width: 100%;
	border: 2px solid rgba(255, 255, 255, 0.07);
	border-radius: 3px;
	background-color: rgba(255, 255, 255, 0.07);
	padding: 0 10px;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 300;
}

button
{
	margin-top: 50px;
	width: 100%;
	background-color: #FFFFFF;
	color: #080710;
	padding: 15px 0;
	font-size: 20px;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
}

.loweroptions
{
	display: flex;
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;
	top: calc(100vh - 100px);
}

.flexbox
{
	display: flex;
}

.non-importantstuff
{
	margin-right: 0;
	margin-left: auto;
}

.loweroptions button
{
	width: 20vw;
	border-radius: 3px;
	padding: 5px 10px 10px 5px;
	background-color: rgba(255, 255, 255, 0.27);
	color: #eaf0fb;
	text-align: center;
	font-size: 16px;
	word-wrap: break-word;
}

.loweroptions button:hover
{
	background-color: #85B4D1;
	color: #091016;
	rotate: 180deg;
}

#register
{
	margin-left: 55vw;
}

.shape
{
	height: 200px;
	width: 200px;
	position: absolute;
}

.shape:hover
{
	background-color: rgba(255, 255, 255, 0.35);
}

.rectangle1
{
	background-color: #1845AD;
	left: -40px;
	top: -60px;
	border-radius: 10px;
	rotate: 5deg;
}

.rectangle2
{
	background-color: #23A2F6;
	left: 320px;
	top: 40px;
	border-radius: 30%;
	rotate: 50deg;
}

.circle1
{
	background-color: #FF512F;
	left: -60px;
	top: 170px;
	border-radius: 50%;
}

.circle2
{
	background-color: #F09819;
	left: 200px;
	top: 300px;
	border-radius: 50%;
	height: 250px;
	width: 250px;
}

.triangle1
{
	background-color: rgba(255, 255, 255, 0);
	left: 160px;
	top: 100px;
	border-radius: 50%;
	border-left: 110px solid transparent;
	border-right: 110px solid transparent;
	border-bottom: 220px solid #EF1A68;
	rotate: 65deg;
	height: 0px;
	width: 0px;
}