body{
	background-image:url("./asset/download.jpg");
	/* background-image:url("https://source.unsplash.com/random"); */
	background-size: cover;
	background-repeat: none;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.box{
	height: 70vh;
	width: 50vh;
	border: 3px solid transparent;
	background-clip: padding-box;
	background-color: rgba(255, 255, 255,0.2);
	border-radius: 10px;
	backdrop-filter: blur(5px);
	box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.2);
	text-align: center;
	
	
	


}
.box input[type=submit]{
	margin-top: 18px;
    min-width: 89px;
	border: 3px solid transparent;
	background-clip: padding-box;
	background-color: rgba(255, 255, 255,0.2);
	border-radius: 5px;
	backdrop-filter: blur(5px);
	box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.2);

}
.box input[type=text]{
	border: 0px solid transparent;
	background-clip: padding-box;
	background-color: rgba(255, 255, 255,0.2);
	border-radius: 5px;
	backdrop-filter: blur(5px);
	box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.2);
}
.box input[type=submit]:hover{
	background-color: rgba(255, 255, 255,0.4);
	
}