@import url(https://fonts.googleapis.com/css?family=Roboto:300);

.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}
.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
input[type=submit] {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #ff9400;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
input[type=submit]:hover,input[type=submit]:active,input[type=submit]:focus {
  background-color: #c67300;
}

body {
  background: #dbd9d6;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;      
  
}

.header{
  background-color: white;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}
.logo{
  margin-left: 0.5%;
  margin-top: 0.5%;
  width: 15%;
  height: 5%;
  position: relative;
  float: left;
}

#logout{
  float: right;
  width: 10%;
  margin-top: auto;
  height: 5%;
}

#container{
  left: 0px;
  margin-top: 6%;
  width: 100%;
}
#formdiv{
  width: 50%;
  margin: auto;
}
#submeterform{
  width: 40%;
}
#inputdiv{
  margin: auto;
}

.myForm {
    display: grid;
    grid-template-columns: [labels] auto [controls] 1fr;
    grid-auto-flow: row;
    grid-gap: .8em;
    background: #eee;
    padding: 1.2em;
  }
  .myForm > label  {
    grid-column: labels;
    grid-row: auto;
  }
  .myForm > input,
  .myForm > textarea,
  .myForm > button {
    grid-column: controls;
    grid-row: auto;
    border: none;
    padding: 1em;
  }

.footer{
  max-width: 55%;
  max-height: 5%;
}

.footerdiv{
  background-color: white;
  bottom: 0px;
  left: 0px;
}


#divresultado{
  margin:auto;
  width: 50%;

}