html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {margin: 0;padding: 0;border: 0;outline: 0;font-size: 92%;vertical-align: baseline;background: transparent}body {line-height: 1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display: block}nav ul {list-style: none}blockquote,q {quotes: none}blockquote:before,blockquote:after,q:before,q:after {content: none}a {margin: 0;padding: 0;font-size: 100%;vertical-align: baseline;background: transparent}ins {background-color: #ff9;color: #000;text-decoration: none}mark {background-color: #ff9;color: #000;font-style: italic;font-weight: bold}del {text-decoration: line-through}abbr[title],dfn[title] {border-bottom: 1px dotted;cursor: help}table {border-collapse: collapse;border-spacing: 0}hr {display: block;height: 1px;border: 0;border-top: 1px solid #ccc;margin: 1em 0;padding: 0}input,select {vertical-align: middle}

@font-face {
    font-family: 'OpenSansRegular';
    src: url(OpenSans-Regular-webfont.eot);
    src: url(OpenSans-Regular-webfont.eot?#iefix) format('embedded-opentype') , url(OpenSans-Regular-webfont.woff) format('woff') , url(OpenSans-Regular-webfont.ttf) format('truetype') , url(OpenSans-Regular-webfont.svg#open_sansregular) format('svg');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'OpenSansRegular';
    transition: all .3s ease-out;
}

body {
    margin: 8px;
}

.boxForm {
    width: 100%;
}

input[type="text"],input[type="tel"],input[type="email"],input[type="number"],input[type="password"],textarea,select {
    position: relative;
    width: 100%;
    height: 36px;
    padding: 0 0 0 12px;
    margin: 0 0 7px 0;
    border-radius: 0px;
    border: 0px;
    background-color: #E8E6E6;
    color: #000;
    font-size: 14px;
    font-family: "OpenSansRegular",sans-serif;
    box-sizing: border-box;
    /* box-shadow: -1px 1px 1px 1px rgba(0,0,0,0.2); */
}

input[type="text"]:focus,input[type="tel"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="password"]:focus,select:focus,textarea:focus {
    /* background-color: #fff; */
    box-shadow: 3px 3px 8px -1px rgba(0,0,0,.4);
    z-index: 9;
}

input[type="text"] {}
input[type="email"] {}
input[type="tel"] {}

select {
    width: 100%;
    height: 34px;
    padding: 0 0 0 8px;
    cursor: pointer;
}

textarea {
    width: 100%;
    max-width: 100%;
    height: 84px;
    max-height: 84px;
    padding-top: 8px;
    margin-bottom: 6px;
}

input[type="checkbox"] {
    width: 20px;
    height: 38px;
    margin-right: 4px;
    cursor: pointer;
}

input[type="submit"], button {
    width: 100%;
    height: 40px;
    margin-top: 0px;
    color: #FFFFFF;
    text-shadow: 1px 1px 1px rgba(0,0,0,.28);
    font-size: 18px;
    cursor: pointer;
    clear: both;
    border: none;
    border-radius: 0px;
    background-color: #299E0C;
    word-wrap: break-word;
    transition: background-color .3s ease-out;
    text-transform: uppercase;
}

input[type="submit"]:hover, button:hover {
    background-color: #006929;
}

input[type="submit"]:active, button:active {
    box-shadow: inset 0 0 32px 0 #333;
}


/* Estilos do PLACEHOLDER (Media: 0px) */
::-webkit-input-placeholder {color: #000 !important;}
:-moz-placeholder {color: #000 !important;}
::-moz-placeholder {color: #000 !important;}
:-ms-input-placeholder {color: #000 !important;}

/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-top: 1px;
  box-sizing: border-box;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #eee;
  border-radius: 50%;
  /* display: unset; */
  border: solid 1px black;
  box-sizing: border-box;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #5f5d5d;
}


.checkbox-div{
    display: inline-block;
    background-color: #E8E6E6;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 10px 2px 10px;
    margin-bottom: 2%;
}

.checkbox-list{
    font-size: 14px;
    display: inline-block;
    box-sizing: border-box;
    margin-bottom: 12px;
    margin-right: 10px;
    /* font-weight: bold; */
}

.container-inline{
    display: inline-block;
    margin-right: 8px;
}

/* Estilo da mensagem de obrigado e erro (Media: 0px) */
#msgObrigado {
    color: #000;
    height: 62px;
    margin: 20px 10px 0 10px;
    text-align: center;
    padding-top: 35px;
    border-radius: 7px;
    font-size: 23px;
    font-family: "OpenSansRegular",sans-serif;
}

#msgErro {
    color: #000;
    height: 100px;
    margin: 20px 10px 0 6px;
    text-align: center;
    padding-top: 35px;
    border-radius: 7px;
    font-size: 24px;
    font-family: "OpenSansRegular",sans-serif;
}

#msgErro b {
    color: #F00;
    text-shadow: 0 0 8px rgba(0,0,0,.5)
}

#outroFormulario{
    padding-top: 10px;
}

#outroFormulario a {
    text-decoration: none;
    font-size: 16px;
    font-family: "OpenSansRegular",sans-serif;
    line-height: 24px;
    color: #000;
}

#outroFormulario a:hover {
    text-decoration: underline
}

/* Media Query de caixa ate 301px de width */
@media (min-width: 301px) {
    .boxForm {
        width: 100%;
    }
    
    input[type="text"]:focus,input[type="tel"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="password"]:focus,select:focus,textarea:focus {
    /* background-color: #fff; */
    box-shadow: 3px 3px 8px -1px rgba(0,0,0,.4);
    z-index: 9;
}

    input[type="text"],input[type="tel"],input[type="email"],input[type="number"],input[type="password"],textarea,select {
        height: 34px;
        width: 99%;
        margin: 0 7px 2% 0;
        float: left;
        transition: all .3s ease-out;
    }

    input[type="text"] {}
    input[type="email"] {}
    input[type="tel"] {}

    textarea {
        width: 100%;
        max-width: 100%;
        height: 80px;
        max-height: 80px;
        padding-top: 8px;
    }

    select {
        width: 100%;
        height: 34px;
        padding: 0 0 0 8px;
        cursor: pointer;
    }

    input[type="submit"], button {
        width: 99%;
        height: 40px;
        border-radius: 0px;
    }

    #msgObrigado {
        margin: 50px 10px 0px 0px !important;
    }

    #msgErro {
        margin: 50px 30px 0px 20px !important;
    }

    #msgErro b {
        color: #F00;
        text-shadow: 0 0 8px rgba(0,0,0,.5)
    }
}

/* Media Query de caixa ate 400px de width */
@media (min-width: 400px) {
    .checkbox-div{
        margin-bottom: 1%;
        width: 99%;
    }
    .boxForm {
        width: 100%;
    }
    
    input[type="text"]:focus,input[type="tel"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="password"]:focus,select:focus,textarea:focus {
    /* background-color: #fff; */
    box-shadow: 3px 3px 8px -1px rgba(0,0,0,.4);
    z-index: 9;
}

    input[type="text"],input[type="tel"],input[type="email"],input[type="number"],input[type="password"],textarea,select {
        height: 34px;
        width: 49%;
        margin: 0 1% 1% 0;
        line-height: 30px;
        border-radius: 0px;
        border-color: #E8E6E6;
        background-color: #E8E6E6;
        color: #000;
        /* font-style: italic; */
        /* box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.22); */
        /* text-transform: uppercase; */
        transition: all .3s ease-out;
        font-size: 14px;
    }

input.nome-aluno {
    width: 99%;
}

    textarea {
        width: 100%;
        min-width: 100%;
        height: 70px;
        max-height: 70px;
        padding-top: 7px;
        padding-right: 10px;
        line-height: 15px;
    }

    select {
        width: 100%;
        height: 42px;
        padding: 0 0 0 12px;
        cursor: pointer;
    }

    input[type="submit"], button {
        width: 23%;
        margin-left: 38%;
        height: 40px;
        margin-top: 6px;
        text-transform: none;
        font-size: 17px;
        letter-spacing: 0px;
        border-radius: 0px;
    }

    /* Estilo da mensagem de obrigado e erro (Media: ate 400px width) */
    #msgObrigado {
        margin: 10px 20px 0px 0px !important;
        color: #000;
    }

    #msgErro {
        margin: 10px 20px 0px 0px !important;
        height: 0px;
        color: #000;
    }
    
    #outroFormulario{
        padding-top: 10px;
    }

    #outroFormulario a {
        line-height: 50px;
        color: #000;
    }
    
    #msgErro b {
        color: #F00;
        text-shadow: 0 0 8px rgba(0,0,0,.5)
    }

    /* Estilos do PLACEHOLDER (Media: ate 400px width) */
    ::-webkit-input-placeholder {color: #000 !important;}
    :-moz-placeholder {color: #000 !important;}
    ::-moz-placeholder {color: #000 !important;}
    :-ms-input-placeholder {color: #000 !important;}
}

/* Estilo somente para o firefox */
@-moz-document url-prefix("") {}