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

body{
    height: 100vh;
    background-image: url(media/giphy.gif);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
display: flex;
align-items: center;
justify-content: center;


}

.container{

    width: 400px;
    height: 400px;
    border: 2px solid black;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.135); 
backdrop-filter: blur(3px);
}
.container h1{
    color: white;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    
}
.box{
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;

    

}
.box input{
    font-size: 15px;
    border: 3px solid rgba(46, 46, 46, 0.816);
    color: white;
    border-radius: 30px;
    height: 40px;
    width: 80%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.109);
    
    
    
}

.box input::placeholder{
    color: white;
    padding-left: 10px;
}

.remember{
    text-align: center;
}
.remember a{
    color: white;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
    
}

span{
    padding-right: 80px;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}
  

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

button{
    width: 80%;
    height: 35px;
    border-radius: 30px;
    border: 3px solid rgba(46, 46, 46, 0.865);
}

.register{
    text-align: center;
    padding-top: 20px;
    color: wheat;

}
.register a{
    text-decoration: none;
    color: white;
    font-size: 15px;
}



@media(max-width:399px){
    .container{
        width: 80%;
    }
}



