@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;

}

body{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: url('img.jpg') no-repeat;
	background-size: cover;
	background-position: center;

}

.wrapper{
	width: 420px;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, .2);
	backdrop-filter: blur(10px);
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	color: white;
	border-radius: 10px;
	padding: 30px 40px;
}

.wrapper h1{
	font-size: 20px;
	text-align: center;
}

.wrapper h4{
	font-size: 20px;
	text-align: center;
}

.wrapper h6{
	font-size: 15px;
	text-align: center;
	padding-top: 10px;
}

.wrapper .btn{
	width: 100%;
	height: 45px;
	background: white;
	border: none;
	outline: none;
	border-radius: 40px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	cursor: pointer;
	font-size: 16px;
	color: #333;
	font-weight: 600;

}

.wrapper .a{
  text-decoration: none;
  padding: 0.5rem;
  border: 1px solid #333333;
  background: white;

}

