*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html,
body {
  height: 100%;
  padding: 0;
  margin: 0; }

html {
  background: #f9f9f9; }

body {
  min-width: 320px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4em;
  color: #444444; }

form {
  padding: 0; }
  @media only screen and (min-width: 840px) {
    form {
      padding: 40px; } }

h1 {
  margin: 0; }

.card {
  max-width: 300px;
  padding: 32px 26px 24px;
  margin: 20px auto;
  overflow: hidden;
  font-weight: 400;
  background: #ffffff;
  border: 5px solid #e9e9e9; }
  @media only screen and (min-width: 480px) {
    .card {
      max-width: 360px; } }
  .card h2 {
    margin-top: 0; }
  .card p {
    margin-bottom: 20px; }

.logo {
  display: block;
  padding: 20px; }
  @media only screen and (min-width: 480px) {
    .logo {
      padding: 40px; } }
  .logo::after {
    clear: both;
    content: "";
    display: table; }
  .logo img {
    display: block;
    max-width: 320px;
    max-height: 80px;
    margin: 0 auto; }
    @media only screen and (min-width: 480px) {
      .logo img {
        max-height: 120px; } }

.alert {
  max-width: 360px;
  margin: 20px auto;
  padding: 15px 24px;
  font-weight: 400;
  overflow: hidden;
  background: #fff;
  border-color: #dddddd;
  border-style: solid;
  border-width: 1px 1px 1px 5px; }

.alert-success {
  color: #3c763d;
  background: #dff0d8;
  border-color: #d6e9c6; }

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1; }

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc; }

.login label {
  display: block;
  margin: 0;
  font-size: 14px;
  color: #777;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }

.login input[type='email'],
.login input[type='password'],
.login input[type='text'] {
  display: block;
  width: 100%;
  height: 40px;
  padding: 7px 8px;
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 100;
  line-height: 1;
  color: #555;
  border: 1px solid #ccc;
  outline: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  .login input[type='email']::-webkit-input-placeholder,
  .login input[type='password']::-webkit-input-placeholder,
  .login input[type='text']::-webkit-input-placeholder {
    font-weight: 100;
    color: #aaa; }
  .login input[type='email']::-moz-placeholder,
  .login input[type='password']::-moz-placeholder,
  .login input[type='text']::-moz-placeholder {
    font-weight: 100;
    color: #aaa; }
  .login input[type='email']:-moz-placeholder,
  .login input[type='password']:-moz-placeholder,
  .login input[type='text']:-moz-placeholder {
    font-weight: 100;
    color: #aaa; }
  .login input[type='email']:-ms-input-placeholder,
  .login input[type='password']:-ms-input-placeholder,
  .login input[type='text']:-ms-input-placeholder {
    font-weight: 100;
    color: #aaa; }

.login input[type='email']:focus,
.login input[type='password']:focus,
.login input[type='text']:focus {
  border-color: #999 !important;
  -webkit-box-shadow: rgba(0, 0, 0, 0.09804) 0 1px 2px 0;
          box-shadow: rgba(0, 0, 0, 0.09804) 0 1px 2px 0; }

.login .form-group {
  display: block;
  margin-bottom: 16px; }

.login a {
  color: #777;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  .login a:hover {
    color: #428bca; }

.login input[type='submit'] {
  display: block;
  width: 100%;
  height: 40px;
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  white-space: no-wrap;
  vertical-align: baseline;
  cursor: pointer;
  background: #00a4b3;
  border: 1px solid #00a4b3;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease; }
  .login input[type='submit']:hover {
    background: #00838f;
    border: 1px solid #00838f; }

.version {
  display: block;
  font-size: 12px;
  text-align: center;
  opacity: 0.6; }
  @media only screen and (min-width: 840px) {
    .version {
      bottom: 20px; } }
  .version a {
    color: #777;
    text-decoration: none; }

.qr-code {
  border: 1px solid #d9d9d9;
  margin: 0 auto 40px; }
  .qr-code img {
    display: block;
    width: 100%; }
