@charset "UTF-8";

/*
paleta de cores
azul #123251
cinza #B8B8B8
dourado #BF9447
gelo #EFEEEC
*/

* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body, html {
  /*background: #B8B8B8;*/
  background:url(imagens/background_marta_G.jpg);
  background-size:cover;
  background-position: left bottom;
  height: 100vh;
  width: 100%;
}

main {
  height: 100vh;
  width: 100vh;
}

section#login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: #123251;
  width:350px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.853);
}

section#cont {
  margin: auto;
  margin-top: 10px;
  color: white;
  background-color: #123251;
  width:350px;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.853);
}

section#login > div#imagem {
  display: block;
  background: #123251 url(imagens/logo.png) no-repeat;
  background-size: cover;
  height: 300px;
}

section#login > div#formulario {
  display: block;
}

table {border-collapse:collapse;border-spacing:0;width:100%;display:table}table{border:1px solid #ccc}
.w3-bordered tr,table tr{border-bottom:1px solid #ddd}.w3-striped tbody tr:nth-child(even){background-color:#f1f1f1}
table tr:nth-child(odd){background-color:#fff}table tr:nth-child(even){background-color:#f1f1f1}
.w3-hoverable tbody tr:hover,.w3-ul.w3-hoverable li:hover{background-color:#ccc}.w3-centered tr th,.w3-centered tr td{text-align:center}
table td,table th,table td,table th{padding:2px 8px;display:table-cell;text-align:left;vertical-align:top}
table th:first-child,table td:first-child,table th:first-child,table td:first-child{padding-left:16px}

h2 {
  color:white;
}

input, select, textarea, fieldset {
  width: auto;
  background-color: white;
  height: 35px;
  font: 15pt Arial;
  border-radius: 5px;
  margin: 5px;
  padding: 5px;
  border-color: #BF9447;
  border-width: 1px;
}

input#iduser, input#idpass {
  width: 98%;
}
select {
  width: 810px;
}
input::placeholder,textarea::placeholder{
  color:darkgray
}
textarea, fieldset {
  height: 150px;
  width: 98%;
}
.w10 {
width:47px;
}
.w20 {
width:70px;
}
.w35 {
width:85px;
}
a {
text-decoration: none;
}
.btn {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #B8B8B8;
  border: 2px solid #BF9447;
  border-radius: 5px;
  color: #123251;
  cursor: pointer;
  margin: 5px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  font: 15pt Arial;
  line-height: 1;
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 0.5em 1.5em;
  text-decoration: none;
  text-align: center;
  
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  width: auto;
}
.btn:hover, .btn:focus {
  color: white;
  outline: 0;
}

.first {
  -webkit-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.first:hover {
  box-shadow: 0 0 40px 40px #BF9447 inset;
}

table, td, th, tr {
text-align: left;
border: 1px solid black;
}
tr {
color: black;
background-color: #BF9447;
padding: 2px;  
}