#mediaj09k3zco14 {
    --bg-overlay-color: rgb(245, 126, 22);
    --bg-gradient: none;
    width: 100%;
    --column-width: 980px;
    --column-flex: 980;
}

/* Todos os elementos da página */
* {
    margin: 0;
    padding: 0;
    /* background-color: rgb(245, 126, 22); */
}
/*heigth 150px*/
.logo{
    height: auto; 
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.cabecalho{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: rgb(245, 126, 22);
    margin-bottom: 10px;
}
/* Elementos com o ID "titulo" */
#titulo {
    font-family: sans-serif;
    color: #fff;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
} 

/* Elementos com o ID "subtitulo" */
#subtitulo {
    font-family: sans-serif;
    color: rgb(245, 126, 22);
    margin-left: 10%;
} 

#check{
    display: inline-block;
}

/* Elementos de tag <fieldset>*/
fieldset {
    border: 0;
}
.container{
    /* background-color: rgb(245, 126, 22); */
    /* margin-left: 36%; */
    align-items: center;
    display: flex; 
    flex-direction: column;
}
/* .campo-contaner{
    justify-content: left;
    display: flex;
    flex-direction: column;
} */

/* Elemento de tag <body> */
body{
    background-color: #fff;
    font-family: sans-serif;
    font-size: 1em;
    color: rgb(0, 0, 0);
    /* text-align: center; */
    justify-content: center;
}

/* Elementos de tags <body>, <input>, <Select>, <textarea> e <button> */
input, select, textarea, button {
    font-family: sans-serif;
    font-size: 1em;
    color: rgb(245, 126, 22);
    border-radius: 5px;
    align-items: center;
}

/* Elementos de classe "grupo" nos estados das pseudoclasses "before" e "after" */
.grupo:before, .grupo:after {
    display: flex;
}

/* Elementos de classe "grupo" no estado da pseudoclasse "after" */
.grupo:after {
    clear: both;
}

/* Elementos de classe "campo" */
.campo {
    margin-bottom: 1em;
    margin-left: 25px;
    
}

/* Elementos de classe "campo" de tag <label> */
.campo label {
    margin-bottom: 0.2em;
    color: rgb(245, 126, 22);
    display: flex;
    justify-content:left;
    align-items: start;
}
.resultado{
    margin-bottom: 0.2em;
    color: rgb(245, 126, 22);
    font-weight: bold;
    display: flex; 
}
.resultadoText{
    margin-bottom: 0.2em;
    font-weight: bold;
    /* display: block;   */
}
.campo p {
    margin-bottom: 1em;
    color: rgb(245, 126, 22);
    font-weight: bold;
    /* display: flex; */
    display: block;
    text-align: left;
    margin: 15px;
}

/* Elementos de classe "campo" ou "grupo" de tag <fieldset> */
fieldset.grupo .campo {
    /* float:  left; */
    margin-right: 1em;
    align-items: center;
    display: flex;
    flex-direction: column;
}

/* Elementos de classe "campo" das tags <input> com atributo text e email, da tag <select> e da tag <textarea>*/
.campo input[type="text"], .campo input[type="email"],.campo input[type="tel"], .campo select, .campo textarea {
    padding: 0.2em;
    border: 1px solid #fff;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    display: flex;
    
}

/* Elementos de classe "campo" de tag <select> e <option>*/
.campo select option {
    padding-right: 1em;
}

/* Elemento de classe "campo" com tag <input>, <select> e <textarea> tocas com estado da pseudoclasse "focus"*/
.campo input:focus, .campo select:focus, .campo textarea:focus {
    background: #E0E0F8;
}

/* Elemento de classe "botao" */
.botao {
    font-size: 1.2em;
    background: rgb(245, 126, 22);
    border: 0;
    margin-bottom: 1em;
    color: #fff;
    padding: 0.2em 0.6em;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    position: relative;
    top: 90%;
}

/* Elemento de classe "botao" com o estado da pseudoclasse "hover" */
.botao:hover {
    background: #ffffff;
    color: rgb(245, 126, 22);
    box-shadow: inset 2px 2px 2px rgba(0,0,0,0.2);
    text-shadow: none;
}

/* Elementos de classe botão e de tag <select> */
.botao, select{
    cursor: pointer;
}

