* {
  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,html {
  width: 100vw;
  height: 100vh;
  /* text-align: center; */
  display: flex;
  align-items: center;
  justify-content: center;
}
#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);

}
#login {
  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 rgb(121, 0, 0);
  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 rgba(255, 0, 0, 0.407);
}
.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 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;
  font-size: 1.5em;
}
p > a {
  color: #fff;
  text-decoration: none;
  font-weight: 600px;
}
p > a:hover {
  text-decoration: underline;
  /* font-style: italic; */
}
#btn {
  width: 80%;
  height: 50px;
  border-radius: 40px;
  border: none;
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 35px;
}
#btn:hover {
  background-color: rgba(0, 0, 0, 0);
  color: white;
}
#remember-me {
  text-align: center;
  color: #fff;
  font-size: 1em;
  display: flex;
  justify-content: center;
  gap: 50px;
  /* margin-left: 10px; */
  margin-bottom: 8px;
}
#remember-me > a {
  color: #fff;
  text-decoration: none;
  font-weight: 600px;
}
#remember-me > a:hover {
  text-decoration: underline;
  /* font-style: italic; */
}
p{
  font-size: 1em;
}