#contato{
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 3rem;
}
#contato h1{
    font-size: 2.5rem;
}
#contato h2{
    font-size: 1.7rem;
    opacity: .7;
}
#contato > .bg{
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
}
#form-contato{
    position: relative;
    background-color: var(--cz-10);
    width: 85%;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
#form-contato fieldset{
   display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    color: var(--c2); 
}

/*medias and screen*/
/**tv is all**/
/**desktop**/
@media only screen and (max-width: 1200px) {}

/*desk*/

/**laptop**/
@media only screen and (max-width: 1024px) {}

/*lapt*/

/**tablet**/
@media only screen and (max-width: 768px) {}

/*tabl*/

/**mobile**/
@media only screen and (max-width: 570px) {
    #contato{
        padding: .3rem;
    }
    #form-contato{
        width: 100%;
    }
}

/*mob*/

/*micro-mobile*/
@media only screen and (max-width: 370px) {}

/*mmob*/