@import 'https://fonts.googleapis.com/css?family=Roboto:700,400';

html, body {
  width: 100%;
  height: 100%;  
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;          
          box-sizing: border-box;
}
html {
  background-color: #eee;
}
body {
  font-family: Roboto,"Verdana",Arial,sans-serif;
  color: #212121;
  background-color: #ff6812;
}
#login {
  max-width: 360px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 10%;
  right: 0;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  overflow: hidden;
}
.title {
  height: 80px;
  line-height: 80px;
  font-size: 1.7em;
  width: 100%;
  /*background-image: url("/app/img/icon196_white.png");*/
  background-image: url(../img/icon196.png);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: 20px;
  text-align: center;
  sbackground-color: #ff6812;
  color: #ff6812;
  position: relative;
  z-index: 1;
}
.title:after {
  background-image: url(../img/icon196.png);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: 20px;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  content: "";
}
.version {
  color: #757575;
  text-align: center;
  padding: 0px 30px 30px 30px;
  font-size: 0.8em;
}
.version span {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}
a {
  color: #ff6812;  
}
.error {
  color: #ff6812;
  /* background-color: #ff6812; */
  border-radius: 2px;
  text-align: center;
  padding: 10px;
  margin: 0px 30px 30px 30px;
}
.error span {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}
form {
  padding: 30px 30px 30px 30px;
  text-align: center;
}
.username,
.password {
  color: #757575;
  display: none;
}
input {
  padding: 5px 10px;
  margin-bottom: 10px;
  /* width: 100%; */
  font-family: Roboto,"Verdana",Arial,sans-serif;
  vertical-align: middle;
  border: 0;
  border-bottom: 1px solid #bdbdbd;
  border-radius: 0;
  outline: 0 none;
  box-shadow: none;
  height: 32px;
  font-size: 14px;
  background-color: #f7f7f7;
}
input:focus {
  border-bottom: 2px solid #ff6812;
}
.logindiv{
  cursor: pointer;
  /* width: 100%; */
  margin-top: 10px;
  border: 0;
  border-radius: 2px;
  display: inline-block;
  transition: box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1);
  outline: none;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12);
  background: #ececec;
  line-height: 30px;
  padding: 0 10px;
  font-size: 14px;
  color: #212121;
  text-transform: uppercase;
  background-color: #ff6812;
  color: white;
}
.logindiv:hover{
  box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px -1px rgba(0,0,0,.2);
  background-color: #f35900;
}

@media only screen and (max-width: 360px) {
  html {
    background-color: #fff;
  }
  #login {
    top: 0;
    box-shadow: none;
  }
  .title {
    /* height: 200px; */
    /* padding-top: 150px; */
  }
}


