@import url(https://fonts.googleapis.com/css2?family=Poppins);
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
    
}
body{
	justify-content: center;
	align-items: center;
	background-position: center;
	background: #4A2B4D;
	color: aliceblue;
	
}

.header-band {
	top: 0;
	left: 0;
	height: 40px;
	width: 100%;
	padding-top: 10px;
	padding-left: 6px;
	padding-right: 6px;
	background: #2A0F2D;
	position: sticky;
}

.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}

.wrapper {
	position: relative;
	padding-top: 30px;
	padding-left: 10px;
	padding-right: 10px;
	background: #2A0F2D;
	color: aliceblue;
	border: 2px solid rgba(255,255,255,.5);
	border-radius: 6px;
	backdrop-filter: blur(20px);
	box-shadow: 0 0 30px rgba(0,0,0,.5);	
	justify-content: center;
	align-content: center;
	margin:auto;
	margin-top: 30px;
	margin-bottom: 30px;
	width: 300px;
}

.wrapper input{
	width: 100%;
}

.btn{
	margin-top: 5px;
	width: 100%;
	height: 35px;
	background: #702777;
	border: solid thin #999999;
	border-radius: 3px;
	cursor: pointer;
	font-size: 1em;
	color: #FFFFFF;
	font-weight: 500;
	box-shadow: 0 0 30px rgba(0,0,0,.5);
}
