body{
  margin: 0;
  background-color: #e9eaec;
  font-family: 'Roboto';
  font-family: 'Dosis', sans-serif;
  height: 100%;

}

.wrapper{
  width: 40%;
  height: 100%;
  margin: auto;
  display: grid;    /* ou inline-grid */
  grid-template-columns: 60% 40%;   /* define o tamanho padrão das colunas */ 
  grid-template-rows: 150px 250px 60px;   /* define o tamanho padrão das colunas */ 
  grid-template-areas:
    "top pic"
    "mid pic"
    "bot pic";
  align-content: center;
  border-radius: 100px;
}

.welcome{
  grid-area: top;
  background-color: #FFF;
  min-height: 30px;
  z-index: 10;
  border-radius: 5px 0 0 0;
  text-align: center;
  font-size: 22px;
  padding-top: 50px;
  
}    

.login{
  grid-area: mid;
  background-color: #FFF;
  z-index: 10;
  text-align: center;
}

.loginExtra{
  grid-area: bot;
  background-color: white;
  z-index: 10;
  border-radius: 0 0 0 5px;
}

.welcomeArea{
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 4;
  background-image: url(../imagens/fundoLogin.jpg);
  background-size: cover;
  border-radius: 5px;
}


/*  TEXTOS   */
.errMsg{
  color: red;
}

.tituloPagina{
  color: #2980b9;
  font-size: 36px;
  font-weight: bold;
  border-bottom: 1px dotted #333;
  margin: 20px 0;
}

.subTituloPagina{
  color: #333;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px dotted #333;
  margin: 10px 0;
}


.highNum{
  color: #009999;
  font-family: 'Roboto Condensed';
  font-size: 60px;
  letter-spacing: -3px;
  text-align: center;
  margin-top: 40px;
}

.highCat{
  font-family: 'Roboto';
  color: #aaa;
  font-size: 16px;
  text-align: center;
  margin-top: -8px;
}

.highAction{
  color: #CCC;
  min-height: 50px;
  width: 100%;
  position: absolute;
  bottom: 0;
  border-top: 3px solid white;
  padding-top: 50px;
  background-color: #009999;  /*azul: 3392c0*/
  text-align: center;
  
}

.highAction a{
  color: #CCC;
  text-decoration: none;
}
.highAction a:hover{
  color: #EEE;
  text-decoration: underline;
}

.whiteFont{
  color: #FFF;
  font-size: 1.2em;
  padding-top: 30px;
}


/*  IMAGENS */
.highImage{
  top: -30px;
  display: block;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}



/* FORMS */
  
.actionButton{
  color: #EEE;
  line-height: 2em;
  text-align: center;
  width: 250px;
  box-shadow:inset 0px 1px 0px 0px #bee2f9;
	background:linear-gradient(to bottom, #63b8ee 5%, #468ccf 100%);
	background-color:#63b8ee;
	border-radius:6px;
	border:1px solid #3866a3;
	cursor:pointer;
	color: #FFF;
	font-size:15px;
	font-weight:500;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #7cacde;
  display: block;
  margin: auto;
  
}

.actionInput{
    display: block;
    font-size: 17px;
    font-weight: 400;
    color: #444;
    padding: 15px 10px 15px 50px;
    width: 250px;
    margin: .4em auto;
    border: 1px solid #CCC;
    border-radius: .3em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
}




/*  MENU  */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  min-height: 50px;
}
li{
  width: auto;
  float: left;
  margin-right: 40px;
  margin-top: 20px;
  padding: 0 15px;
  font-size: 15px;
  color: #333;
  
}

li.active {
  color: navy;
  border-bottom: 3px solid navy;
  padding-bottom: 10px; 
}

li:hover{
  color: navy;
  border-bottom: 3px solid #2980b9;
  padding-bottom: 10px; 
  cursor: pointer;
  
}

.table {
  margin: 0 0 40px 0;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: table;
}



/* Página de erro! */

.wrapperErr{
  width: 40%;
  height: 60%;
  margin: auto;
  margin-top: 5%;
  align-content: center;
  border-radius: 100px;
}

.mensagemErr{
  background-color: #FFF;
  min-height: 30px;
  border-radius: 5px 0 0 0;
  text-align: center;
  font-size: 22px;
  padding: 50px;
  text-align: center;  
}

.mensangemErr a{
  color: #FFF;
}

.mensangemErr a:hover{
  color: #2980b9;
}

.imgAreaErr{
  text-align: center;
}

.ops{
  font-size: 60px;
}

@media screen and (max-width: 580px) {
  .table {
    display: block;
  }
}

.row {
  display: table-row;
  background: #f6f6f6;
}
.row:nth-of-type(odd) {
  background: #e9e9e9;
}
.row.header {
  font-weight: 900;
  color: #ffffff;
  background: #ea6153;
  
}
.row.green {
  background: #27ae60;
}
.row.blue {
  background: #2980b9;
}
@media screen and (max-width: 580px) {
  .row {
    padding: 14px 0 7px;
    display: block;
  }
  .row.header {
    padding: 0;
    height: 6px;
  }
  .row.header .cell {
    display: none;
    padding: 12px;
  }
  .row .cell {
    margin-bottom: 10px;
  }
  .row .cell:before {
    margin-bottom: 3px;
    content: attr(data-title);
    min-width: 98px;
    font-size: 10px;
    line-height: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #969696;
    display: block;
  }
}

.cell {
  padding: 12px 12px;
  display: table-cell;
  text-align: center;
}

@media screen and (max-width: 780px) {
  .wrapper{
    width: 90%;
  }
  .cell {
    padding: 2px 16px;
    display: block;
  }
}


@media screen and (max-width: 580px) {
  .wrapper{
    width: 90%;
    display: grid;    /* ou inline-grid */
    grid-template-columns: 100%;   /* define o tamanho padrão das colunas */ 

  }
  .cell {
    padding: 2px 16px;
    display: block;
  }
}



