body {
  margin: 0;
  font: normal 16px Arial, Helvetica, sand-serif;
  color: #333;
}

#particles-js {
  background: rgb(8, 8, 8);
  height: 100vh;
}

.loginform {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 450px;
  top: 150px;
  width: 450px;
  height: 330px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bolder;
  border-radius: 3%;
}

.title {
  position: relative;
  font-family: "Myriad Pro", "Helvetica Neue", Helvetica;
  font-weight: bold;
  font-size: 25px;
  text-shadow: 0px 1px 2px rgba(255, 255, 255, 0.5);
  color: cornflowerblue;
  text-align: center;
}

form {
  background: none;
  margin: 20px auto 0;
  padding: 10px;
  width: 280px;
}

input {
  display: block;
  font-size: 14px;
  width: 240px;
  margin: 10px auto;
  padding: 10px 8px 10px 8px;
  border-radius: 5px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.55),
    0px 1px 1px rgba(255, 255, 255, 0.5);
  border: 1px solid #666;
}

input {
  opacity: 0.5;
}

input:hover,
input:focus {
  opacity: 0.7;
  color: skyblue;
  border: 1px solid skyblue;
  box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.25),
    inset 0px 3px 6px rgba(0, 0, 0, 0.25);
}

input[type="text"]:focus,
input[type="password"]:focus {
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.35),
    0px 1px 15px rgba(0, 246, 255, 0.5);
  border: 1px solid skyblue;
  outline: none;
}

input[type="submit"] {
  appearance: none;
  opacity: 0.99;
  width: 120px;
  background: springgreen;
  border: 1px solid skyblue;
  border-radius: 4px;
  color: #eee;
  cursor: pointer;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.5);
}

input[type="submit"]:hover {
  background: springgreen;
  width: 120px;
  border: 1px solid skyblue;
  border-radius: 3px;
  box-shadow: inset 0px 3px 16px rgba(0, 0, 0, 0.25),
    0px 1px 10px rgba(255, 255, 255, 0.5),
    inset 0px -1px 2px rgba(255, 255, 255, 0.35);
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.65);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
