body{
    background-color: yellow;
    margin: 0;
    font-family: 'Franklin Gothic Medium';
    background-image: url(imagens/fundoRecuperarSenha.png);
    background-repeat: no-repeat;
    background-size: cover;
    /*background-position: center;*/
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(0, 0, 199);
    color: white;
}

section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
form{
    display: flex;
    flex-direction: column;
}
input{
    border-radius: 20px;
    border: 2px solid rgb(0, 174, 255);
    padding: 3%;
    margin-block: 2%;
    text-align: center;
}
.barraRecSenha{
    background-color: rgba(0, 255, 242, 0.555);
    width: 15%;
    padding-inline: 5%;
    padding-top: 3%;
    margin-block: 5%;
    border-radius: 20px;
    text-align: center;
}
.enviar{
    margin-top: 15%;
    background-color: rgb(25, 212, 0);
    border: 0px;
    color: white;
}
.enviar:hover{
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    color: rgb(25, 212, 0);
}
.voltarRecSenha{
    position: fixed;
    background-color: rgb(0, 0, 199);
    bottom: 5%;
    left: 5%;
    color: white;
    padding: 0.5%;
    border-radius: 20px;
    text-decoration: none;
}


@media screen and (max-width:768px) {
    
    body{
        background-size: auto;
        background-position: top;
    }
    .barraRecSenha{
        width: 80%;
    }
    .voltarRecSenha{
        position: relative;
        width: 60%;
        text-align: center;
        margin-block: 10%;
    }

}