*{
 margin: 0;
 padding: 0;
}

html{
    width: 100vw;
    height: 100vh;
}

body{
 background-color: #f7fafc;
 width: 100%;
 height: 100%;
 font-family: "Varela Round", sans-serif;
   font-size: 15px;
 text-align: center;
 color: #000;
 letter-spacing: 0.02em;
  font-weight: 400;
 -webkit-font-smoothing: antialiased; 
 overflow-x: hidden;
 background-image: url("bg2.jpg");
  background-repeat: repeat;
  background-clor: #fff;
}

.blurred-box{
  position: relative;
  width: 90%;
  max-width: 400px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(227 205 205 / 72%);
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 20px;
}

.blurred-box:after{
 content: '';
 width: 300px;
 height: 300px;
 background: inherit; 
 position: absolute;
 left: -25px;
 left position
 right: 0;
 top: -25px;  
 top position 
 bottom: 0;
 box-shadow: inset 0 0 0 200px rgba(255,255,255,0.05);
 filter: blur(10px);
}


/* Form which you dont need */
.user-login-box{
  position: relative;
  margin-top: 20px;
  text-align: center;
  z-index: 1;
}
.user-login-box > *{
  display: inline-block;
  width: 100%;
}

.user-icon{
  width: 100px;
  height: 65px;
  position: relative;
  background-repeat: no-repeat;
  background-image: url("logon.png");
  -webkit-filter: drop-shadow(5px 5px 5px #222 );
  filter: drop-shadow(0px 0px 2px #fff);
}

.user-icon2{
  width: 100px;
  height: 100px;
  margin-top: 20px;
  position: relative;
  border-radius: 50%;
  background-size: contain;
  background-position: center;
  -webkit-filter: drop-shadow(5px 5px 5px #222 );
  filter: drop-shadow(0px 0px 2px #000);
}

.user-name{
  margin-top: 15px;
  margin-bottom: 15px;
  color: white;
}

input.user-password{
  width: 120px;
  height: 18px;
  opacity: 0.8;
  border-radius: 2px;
  padding: 5px 15px;
  border: 0;
  text-align: center;
}

input.newform{
	background-color: rgba(0, 0, 0, 0.1);
	outline: 0;
	border-width: 0 0 2px;
	border-color: white;
	text-align: left;
	border-radius: 5px;
	line-height: 25px;
	padding: 5px 0;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px); 
	font-family: "Varela Round", sans-serif;
	color: #000;
}

textarea {
	border-radius: 5px;
	border: 0;
	text-align: left;
	background-color: rgba(0, 0, 0, 0.1);
	padding: 5px 0;
	font-family: "Varela Round", sans-serif;
	outline: 0;
	border-width: 0 0 2px;
	border-color: white;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px); 
	color: #000;
}