@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300");
.canvas {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header, .footer, .main {
  padding-left: 2vw;
  padding-right: 2vw;
}

.header {
  background: #5d85ae;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 45px;
}

.header > .title {
  padding: 0;
  margin: auto;
}

.header > .title h2 {
  padding: 0;
  margin: 0;
  color: #fff;
  line-height: 45px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}

.footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #dfdfdf;
  background: #fff;
  height: 48px;
  text-align: right;
}

.footer img {
  height: 45px;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /* this essentially means "use all parent's inner height */
  background: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.panel-body {
  font-family: 'Open Sans Condensed', arial, sans;
  width: 500px;
  padding: 30px;
  background: #FFFFFF;
  margin: 20vh auto;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.22);
}

.form-group {
  padding: .5em;
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
  .panel-body {
    width: 80vw;
  }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
  .panel-body {
    width: 70vw;
    margin: 13vh auto;
  }
}

input[type="text"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="time"],
input[type="url"],
input[type="password"],
textarea,
select {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  display: block;
  width: 100%;
  padding: 7px;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  margin-bottom: 10px;
  font: 16px Arial, Helvetica, sans-serif;
  height: 45px;
}

textarea {
  resize: none;
  overflow: hidden;
}

button,
input[type="button"],
input[type="submit"],
a.btn {
  background-color: #808080;
  display: inline-block;
  cursor: pointer;
  color: #FFFFFF;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 14px;
  padding: 8px 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #83B33B;
}

.btn-default {
  background-color: #808080;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #83B33B), to(#63A31B));
  background: linear-gradient(to bottom, #83B33B 5%, #63A31B 100%);
}

ul.list-inline {
  padding: 0;
  list-style: none;
}

ul.list-inline li {
  display: inline;
}
/*# sourceMappingURL=ModalLogin.css.map */