.popup{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 600000;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
}



.sumiu{
    display: flex;
}

#fechar{
    font-size: 1.5rem;
    color: #A5237E;
    cursor: pointer;
}

#fechar:hover{
    text-shadow: 0 0 .3rem #A5237E;
}

.form{
    border-radius: 4px;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.8);
    border-top: 6px solid #FF6700;
    background-color: #fff;
    padding: 1rem;
    width: 100%;
    max-width: 400px;
    min-height: 200px;
    margin: 2rem;
}

.form article{
    margin-top: 1rem ;
}

.form article input{
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 1rem;
    border: 1px solid #DE008B;
    border-radius: 8px;
    transition: 1s;
}

.form article input:focus{   
    border: 2px solid #DE008B;
}


.form article input:focus{
    outline: none;
}

.form article textarea{
    display: block;
    margin: 1 auto;
    width: 100%;
    border: 1px solid #DE008B;
    resize: none;
    border-radius: 4px ;
}
.check{
    display: flex;
    align-items: center;
    justify-content: center;
}

.check input{
    display: inline;
    margin: none;
    display: inline;
}
.check p{
    font-size: .8rem;
    font-weight: 400;
    margin-left: 1rem;
}
.form article label{
    font-weight: 600;
    color: #DE008B;
}

.form article textarea:focus{ 
    outline: 1px solid #DE008B;
}
.formBnt{
    font-weight: 500;
    background-color: #de008d63;
}
.formBnt:hover{
    
    color: #fff;
    background-color: #DE008B;
}