.password_forgotten_background{
  position: fixed;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: 20;
  display: none;

  justify-content: center;
  align-items: center;

}
.password_forgotten_container{
  position: relative;
  width: 300px;
  height: 280px;
  background: rgba(30,54,81,.7);
  background: linear-gradient(180deg, rgba(30,54,81,.98) 57%, rgba(47,67,90,.98) 100%);
  box-shadow: 0px 0px  29px #1B2737,  -0px -0px  29px #1B2737;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;

}
.password_forgotten_head{
  position: absolute;
  top: 0px;
  width: 100%;
  height: 80px;
  background: rgba(106,108,110, .1);
  background: linear-gradient(90deg, rgba(106,108,110,.8) 0%, rgba(141,169,167,.8) 50%, rgba(106,108,110,.8) 100%);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: 0px 0px  5px black;
}

.password_forgotten_head h3{
  position: absolute;
  left: 50%;
  padding: 5px;
  margin: 0px;
  text-align: center;
  top: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  font-size: 1.6em;
  font-weight: 600;
  color: rgba(255 , 255 , 255 , .8);
  text-shadow: 0px 0px  5px black;
}
.password_forgotten_head img{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 30%;
  cursor: pointer;
  filter: drop-shadow(1px 1px 1px black)  brightness(.8);
  transition: .4;
}
.password_forgotten_head img:hover{
  filter: drop-shadow(1px 1px 3px black)  brightness(.9);
}
.password_forgotten_head img:active{
  filter: drop-shadow(1px 1px 1px black)  brightness(.8);
}
.password_forgotten_body{
  position: absolute;
  top: 80px;
  width: 100%;
  height: 190px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0,0,0,0);
}

.password_forgotten_body label{
  position: relative;
  text-align: center;
  color: white;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 300;

}
.password_forgotten_body input{
  position: relative;
  margin-bottom: 15px;
  border-radius: 5px;
  padding: 3px 10px;;
  font-size: 1em;
  background: rgba(255 , 255 , 255 , .8);
}
.password_forgotten_body button{
  padding: 4px 14px;
  z-index: 10;
  font-size: 1.1em;
  font-weight: 400;
  border-radius: 5px;
  color: black;
  background-color: #B3C7BF;
  cursor: pointer;
  margin-top: 20px;
}
.password_forgotten_body input::placeholder{
  position: relative;
  text-align: center;
  padding: 3px 10px;;
  font-size: 0.97em;
  color: rgba(0 , 0 , 0 , .5);
}
