*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
.container{
    width: 100%;
    height: 100vh;
    background-image: url(../images/bglogin.jpg) ;
    background-position: center;
    background-size: cover;
    background: blur(3px);
    position: relative;
}
.form_box{
    width: 90%;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 20px;
    padding: 50px 60px 70px;
    text-align: center;

}
.form_box h1{
    font-size: 30px;
    margin-bottom: 60px;
    color: #3c00a0;
    position: relative;

}
.form_box h1::after{
    content: '';
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background: #3c00a0;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.input-field{
    background: #eaeaea;
    margin: 15px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
}
input{
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 18px;
}
.input-field i{
    margin-left: 15px;
    color: #999;

}
.submiti{
    
    margin-left: 50%;
    transform: translateX(-60%);
    border-radius: 10px;
    
}
.submiti input{
    font-size: 15px;
    background: rgb(51, 160, 51);
    width: 200px;
    border-radius: 10px;
    padding: 7px 0;
}
input:hover {
    opacity: 0.8;
  }
  .pass{
    margin: 20px 0;
  }
  .sign{
    display: inline-block;
    width: 100%;
    color: black;
  }
