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

section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: url(../img/bg.jpg) no-repeat;
    background-size:cover ;
    background-position: center;
    animation: animateBg 5s linear infinite;



}

@keyframes animateBg {
    100% {
        filter: hue-rotate(360deg);
    }
    
}

.login-box{

    position: relative;
    width: 400px;
    height: 450px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);


}

h1{
    font-size: 2em;
    color: white;
    text-align: center;
}

.input-box{
    width: 310px;
    margin: 30px 0;
    border-bottom: 2px solid white; 

}


.input-box input{
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: white;

}

.input-box .icon{
    position: absolute;
    right: 8px;
    color: white;
    font-size: 1.2em;
    line-height: 57px;
}

.input-box input::placeholder{
    color: white;
}

.forgot{
    margin: -15px 0 15px;
    font-size: .9em;
    color: white;
    display: flex;
    justify-content: space-between;

}

.forgot input{
    margin-right: 3px;

}

.forgot a {
    color: white;
    text-decoration: none;
}

.forgot a:hover {
text-decoration: underline;
}

button{
    width: 100%;
    height: 40px;
    background: white;
    border: none;
    outline: none;
    border-radius: 40px;
    font-size: 1em;
    color: black;
    font-weight: 500;

}