/*******************************************************************************
*
*  Created on : 17/08/2023, 10:16:10
*  Author     : Walnei Saab
* 
*******************************************************************************/

/* Fonts for google*/
@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro&display=swap');


/** CONFIGURAÇÕES GLOBAIS *****************************************************/
*
{margin:0;padding:0;}
img {width: 100%; height: 100%;}

body
{   
    /** TEXTO NÃO-SELECIONÁVEL ************************************************/
    -webkit-touch-callout : none;
    -webkit-user-select   : none;
    -khtml-user-select    : none;
    -moz-user-select      : none;
    -ms-user-select       : none;
    user-select           : none;
    cursor                : default;
    
    font-family      : "Roboto";
    background-color : #F5F5F5;
}

.hidden
{
    opacity:0;
    width:0;
    height:0;
    z-index:-1;
}

/** ATÉ 720px **********************************************************/
@media all and (min-width : 720px)
{
    .formulario{
        width: 400px;
        margin: 200px auto;
        padding: 15px;
        box-shadow: 5px 5px 5px 5px #DDD;
    }
    .formulario > h2{
        width: 100%;
        text-align: center;
        margin: 20px auto;
    }
    .formulario > label{
        width: 100% ;
        padding: 10px;
        margin: 20px auto;
    }
    .formulario > input{
        width: 100%;
        padding: 10px;
        margin: 20px auto;
    }
}