#resposta {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: #061940cb;
    min-width: 240px;
}

.close {
    color: #061940;
    position: relative;
    font-size: 30px;
    font-weight:400;
    z-index: 1000;
    align-self: baseline;
    justify-self: flex-end;
    width: 5%;
    padding-right: 2px;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.centralizar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#res {
    background-color: rgba(255, 255, 255, 0.917);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 30%;
    height: 20vh;
    box-shadow: 10px 5px 5px #020f2aeb;
    max-width: 600px;
    min-width: 236px;
    text-align: center;
    padding: 5px;
}

#res-content {
    width: 90%;
}

.recaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}


@keyframes erroEnviarEmail {
    from {
        width: 25%;
        height: 15vh;

    }
  
    to {
        width: 30%;
        height: 20vh;
    }
}

@keyframes fecharEmail {
    from {
        width: 30%;
        height: 20vh;
        opacity: 1;
    }
  
    to {
        width: 25%;
        height: 15vh;
        opacity: 0.2;
    }
}

