body{
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
}
@media (min-width: 1000px){
    body{
        background: linear-gradient(to right, red, blue);
    }
}
.Container-Password{
    display: flex;
    flex-direction: column;
    align-self: center;
    align-items: center;
    width: 400px;
    height: 400px;
    margin-top: 40px;
    border-radius: 16px;
    box-shadow: 0px 0px 20px 12px rgb(151, 151, 151);
}

.form-password{
    display: flex;
    flex-direction: column;
}
.Title{
    margin-top: 40px;  
}
#Label-Email-input{
    text-align: center;
    font-size: 17px;
    margin: 0px 40px 0px 40px;
}
#Email-input{
    align-self: center;
    margin-top: 20px;
    border: none;
    border: solid 1px rgb(194, 194, 194);
    width: 300px;
    height: 50px;
    padding-left: 10px;
    border-radius: 5px;
    font-size: 18px;
    outline: none;
}
#Button-Submit-Link{
    align-self: center;
    margin-top: 20px;
    width: 310px;
    border: none;
    border-radius: 5px;
    height: 50px;
    background-color: #007BFF;
    font-size: 18px;
    color: white;
}
.Mensagme-Erro{
    color: rgb(0, 255, 0);
    font-size: 25px;
    align-self: center;
    position: absolute;
    z-index: 10;
    bottom: 180px;
    pointer-events: none;
    animation-delay: 10s;
    animation: fadeIn 10s forwards;
}
@keyframes fadeIn{
    
    from{
        opacity: 1;
    }
    to{
        opacity: 0;
    }
}