*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  height:100vh;
  background:url("images/bg-1.jpg") no-repeat center/cover;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* CONTAINER */
.container{
  backdrop-filter: blur(10px);
  width:100%;
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* BOX */
.box{
  background:rgba(0,0,0,0.7);
  padding:40px;
  border-radius:15px;
  width:320px;
  text-align:center;
  color:white;
}

/* INPUT */
input{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:none;
  border-radius:8px;
  outline:none;
}

/* BUTTON */
button{
  width:100%;
  padding:12px;
  margin-top:10px;
  border:none;
  border-radius:20px;
  background:white;
  color:black;
  font-weight:bold;
  cursor:pointer;
}

/* TEXT */
p{
  margin-top:15px;
  cursor:pointer;
  font-size:14px;
  opacity:0.8;
}

/* HIDE */
.hidden{
  display:none;
}