body {
  margin: 0;
  padding: 0;
  background: #00b9ad ;
  background: linear-gradient(#00b9ad,#60c0d0);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: sans-serif;
}
.login {
  position: fixed;
  top: 50%;
  left: 45%;
  transform: translate(-30%, -50%);
  background: rgba(4, 29, 23, 0.5);
  padding: 50px;
  width: 370px;
  box-shadow: 0px 0px 25px 10px black;
  border-radius: 15px;
}
.avatar {
  font-size: 30px ;
  background: #d88d2b;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 50%;
}
.login h2 {
  text-align: center;
  color: white;
  font-size: 30px;
  font-family: sans-serif;
  letter-spacing: 3px;
  padding-top: 0;
  margin-top: -20px;
}
.box-login {
  display: flex;
  justify-content:space-between;
  margin: 10px;
  border-bottom: 2px solid white;
  padding: 8px 0;
}
.box-login i {
  font-size: 23px;
  color: white;
  padding: 5px 0;
}
.box-login input {
  width: 85%;
  padding: 5px 0;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 18px;
}
.box-login input::placeholder {
  color: white;
}
.btn-login
.box-login input:hover{
  background: rgba(10, 10, 10,s 0.5);
}
.btn-login {
  margin-left: 10px;
  margin-bottom: 20px;
  background: none;
  border: 1px solid white;
  width: 92.5%;
  padding: 10px;
  color: white;
  font-size: 18px;
  letter-spacing: 3px;
  cursor: pointer;
  }
.btn-login:hover{
  background: rgba(12, 30, 15, 0.5);
}
.bottom {
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  justify-content: space-between;
}
.bottom a {
  color: white;
  font-size: 15px;
  text-decoration: none;
}
.bottom a:hover {
text-decoration: underline;
}

.logo{
  width: 200px;
}