#loginbody {
  font-family: "Open Sans", sans-serif;
  height: 100vh;
  padding: 0 !important;
  background: #ffffff;
}

#loginlogo{
  padding-top: 20px;
  background: url("../images/logomitra.png") no-repeat center center;
  background-size: 100px 100px;
  display: inline-block;
  width: 100px;
  height: 100px;
}

#logintitle {
  color: #696969;
  margin: 10px 0 10px 0;
  padding-bottom: 20px;
  font-family: 'Times New Roman';
  font-size: 11px;
  font-weight: 100;
}

#loginwrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.loginform {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  position: relative;
}

.loginform input[type="text"], .loginform input[type="password"], .loginform select {
  font-family: "trebuchet ms";
  font-size: 14px;
  display: block;
  padding: 15px 10px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 2px;
  color: #000;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s;
}

.loginform input[type="text"]:hover, .loginform input[type="password"]:hover, .loginform select:hover {
  background: #eee;
}

.loginform input[type="text"]:focus, .loginform input[type="password"]:focus, loginform select:focus{
  background: white;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid #ddd;
}

span.loginwrapperinput{
  height:60px;
  width:calc(100% - 30px);
  display: inline-block;
}

#loginbutton {
  background: #3700B3;
  width: calc(100% - 30px);
  text-transform: uppercase;
  font-family: "trebuchet ms";
  font-size: 14px;
  color: white;
  cursor: pointer;
  height: 50px;
  border: 0px;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s;
}

#loginbutton:hover {
  background: #d4a00c;
}

#loginerrortitle{
  display:inline-block;
  background: indianred;
  color: white;width: 100%;
  font-family: 'trebuchet ms';
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

#loginerrorimage{
  padding-top: 200px;
  display: inline-block;
  background: url("../images/login/loginerror.png") no-repeat center bottom;
  background-size: 150px 150px;
  width: 150px;
}

#loginerrormessage{
  display:inline-block;
  vertical-align:middle;
  width: 100%;
  font-family: 'trebuchet ms';
  font-size: 14px;
  padding-top: 5px;
}

#loginerrorcontainer{
  display: inline-block;
  height: 100%;
  width: 100%;
}
