@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'poppins',sans-serif;
}

.login_form_box:hover{
  box-shadow: 1px 1px 16px white;
  border: transparent;
}
section{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
background: url(https://media.istockphoto.com/id/1143736474/photo/dark-web-hooded-hacker.webp?b=1&s=170667a&w=0&k=20&c=HxuZ18KLim_SMYUMBQqIDvl73ASTKlCdp_nDwIZA0Io=);
background-size: cover;
}
  .login_form_box{
    border: 2px solid red;
    height: 450px;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: relative;
    border: 2px solid white;
    border-radius: 30px;
    z-index: 1;
  }
h2{
  color:#fff;
  text-align: center;
  font-size: 2em;
}

  .input_text{
    width: 310px;
    margin:45px 0;
    padding: 10px;
    border-bottom: 2px solid #fff;
  }
  .input_text ::placeholder{
    color: #fff;
  }
  .input_text i{
    color:#fff;
  }

  .input_text input{
    background-color: transparent;
   border: none;
   outline: none;
   color: white;
   font-size: 1.2 em;
    width:90%;
    font-weight: 600;
  }
  .forgot{
    color: white;
    text-align: center;
    font-size: 0.8em;
    padding-bottom: 20px;
    margin-top: -30px;
  }
  .forgot a{
    text-decoration: none;
    color: white;
  }
  button{
    width: 100%;
    padding: 8px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 35px;
    border: 0;
    
  }
button:hover{
  cursor: pointer;
  color: #fff;
  background:transparent ;
  border:1px solid white;

}
.register{
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: .8em;
}

.register a{
  text-decoration: none;
  color: white;
  font-weight: bold;
}
.register a:hover{
  text-decoration: underline;
  font-size: 1.1em;
  
}


  a:hover{
     text-decoration: underline;
     color:rgb(237, 237, 7);
   }