@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
body {
  width: 100vw;
  height: 100vh;
  /* text-align: center; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}
#blood{
  height: 100vh;
  width: 101%;
  object-fit: cover;
  position: fixed;
}
#black-film{
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);

}
#signup {
  width: 420px;
  height: 600px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  border: 3px solid;
  box-shadow: 0 0 30px #0ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

 
}
h1 {
  text-transform: uppercase;
  color: #fff;
  padding: 20px 0;
  /* font: 2em; */
  font-weight: 600;
  font-size: xx-large;
}
.form-group {
  position: relative;
  /* background-color: black; */
  width: 330px;
  margin: 30px 0;
  border-bottom: 3px solid #0ef;
}
.form-group input {
  width: 100%;
  height: 50px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.2em;
  color: #fff;
  padding: 0 30px 0 10px;
}
/* .form-group label{ */
/* position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%) ;
  font-size:1.2em ;
  color: #fff;
  transition: 0.5s;
} 

 input:focu~label,
  input:valid~label{
    top: -5px;
  } 
  */
.form-group svg {
  position: absolute;
  top: 50%;
  right: 9%;
  transform: translateY(-50%);
  color: black;
  font-size: 1.2em;
}
p {
  text-align: center;
  color: #fff;
  padding: 10px 0;
}
p > a {
  color: #fff;
  text-decoration: none;
  font-weight: 600px;
}
p > a:hover {
  text-decoration: underline;
}
/* font-style: italic; */
#btn {
  width: 100%;
  height: 50px;
  border-radius: 40px;
  border: none;
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.5s;
}
#btn:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #0ef;
}
