*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(https://images.unsplash.com/photo-1573455494060-c5595004fb6c?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTl8fGphcCVDMyVBM28lMjAlQzMlQTAlMjBub2l0ZXxlbnwwfHwwfHx8MA%3D%3D) no-repeat;
    background-size: cover;
    background-position: center;
}
.waaper{
    width: 420px;
    color: white;
    border: 2px solid gray;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px 40px;
}
.waaper h1{
    font-size: 36px;
    text-align: center;
}
.waaper .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid gray;
    border-radius: 40px;
    font-size: 16px;
    color: white;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: rgb(255, 255, 255);
}

.input-box i{
 position: absolute;
 right: 20px;   
 top: 30%;
 transform: translate(-50%);
 font-size: 20px;
}

.waaper .esqueceu-senha{
    display: flex;
    justify-content: space-between;
    font-size: 14.5;
    margin: -15px 0 15px;
}

.esqueceu-senha label input{
    accent-color: #fff;
    margin-right: 3px;

}

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

.esqueceu-senha a:houver{
    text-decoration: underline;
}

.waaper .btn{
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px black;
    cursor: pointer;
    font-size: 16px ;
    color: #333;
    font-weight: 600;
}

.waaper .link-de-registro{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

.link-de-registro p a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

link-de-registro p a:houver{
    text-decoration: none;
}


