body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-image: linear-gradient(
      45deg,
      rgb(0, 13, 26, 0.5),
      rgb(0, 13, 26, 0.5)
    ),
    url(image.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.loginbox {
  width: 320px;
  font-family: poppins;
  height: 420px;
  border: none;
  border-radius: 5px;
  background: #000;
  position: absolute;
  color: #fff;
  box-sizing: border-box;
  padding: 70px 30px;
}

.avatar {
  width: 90px;
  height: 90px;
  position: absolute;
  top: -50px;
  left: 33%;
}

h1 {
  margin: 0;
  margin-top: -20px;
  padding: 0 0 20px;
  text-align: center;
  font-family: Special Elite;
  letter-spacing: 5px;
  font-weight: bold;
  font-size: 28px;
}

.loginbox p {
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.loginbox input {
  width: 100%;
  margin-bottom: 20px;
}

.loginbox input[type="text"],
input[type="password"] {
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  outline: none;
  color: #fff;
  font-size: 16px;
}

.loginbox input[type="submit"] {
  border: none;
  outline: none;
  height: 40px;
  background: #145d7d;
  color: #fff;
  font-size: 18px;
  border-radius: 20px;
}

.loginbox input[type="submit"]:hover {
  cursor: pointer;
  background: #0f3e58;
  color: #fff;
}

.loginbox a {
  text-decoration: none;
  font-size: 12px;
  line-height: 20px;
  color: darkgrey;
}

.loginbox a:hover {
  color: white;
}
