.hand {
  cursor: pointer;
}
* {
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
html {
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: scrollbar;
}
body {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-family: "Lato", "Helvetica Neue", Helvetica, Century Gothic, Arial, sans-serif;
  color: #333;
  background-repeat: no-repeat;
  background-position: center;
}
label {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
}
label input {
  display: block;
  margin-top: 4px;
  padding: 4px;
  width: 100%;
  border: none;
}
.form-input {
  text-align: center;
}
.text-center {
  text-align: center;
}
.mb-12 {
  margin-bottom: 12px;
}
.form-input-btn {
  -webkit-appearance: none;
  margin-top: 12px;
  padding: .75em 3em;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.alternative-logins .form-input-btn {
  margin-top: 6px;
  width: 100%;
}
.auth-method-separator {
  height: 10px;
}
form {
  min-width: 0%;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  width: 640px;
  height: 480px;
  margin: 0;
  box-shadow: 4px 4px 48px 4px rgba(54, 78, 100, 0.6);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#loginFailed {
  -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 51, 0, 0.5);
}
.loginFailed {
  -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 51, 0, 0.5);
}
#title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  top: 42px;
  right: 0;
  padding: 12px;
  min-width: 50%;
  max-width: 90%;
  font-size: 21px;
  font-weight: bold;
}
.title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  top: 42px;
  right: 0;
  padding: 12px;
  min-width: 50%;
  max-width: 90%;
  font-size: 21px;
  font-weight: bold;
}
#signin {
  position: absolute;
  left: 50%;
  top: 130px;
  right: 20px;
  padding: 20px;
}
.signin {
  position: absolute;
  left: 50%;
  top: 130px;
  right: 20px;
  padding: 20px;
}
#confidentiality {
  position: absolute;
  right: 0;
  bottom: 0;
}
#confidentiality a {
  display: inline-block;
  cursor: pointer;
}
#confidentiality #confidential-data {
  margin: 10px;
}
.form-input-btn:hover,
#confidentiality a:hover {
  opacity: .75;
}
.form-input-btn:active,
#confidentiality a:active {
  opacity: .5;
}
#confidentiality.pull-left {
  right: auto;
  left: 0;
}
.error,
.login-bottom.error a {
  color: white;
}
.error {
  background: #FE6B6B;
}
.success {
  background: #C7F464;
}
.remember-me {
  display: flex;
  padding-left: 26px;
}
.remember-me label {
  display: block;
}
.remember-me input {
  display: inline;
  width: 20px;
  vertical-align: bottom;
  position: relative;
  top: -2px;
}
.lost-password-link {
  font-size: 12px;
  font-weight: bold;
}
.block-feedback {
  margin-top: 18px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.block-feedback.block-success {
  color: #33B573;
}
.block-feedback.block-error {
  color: #C51116;
}
@media all and (max-width: 640px) {
  body {
    overflow: hidden;
  }
  form {
    width: 100%;
    height: 100%;
  }
  #title {
    width: 90%;
  }
  .title {
    width: 90%;
  }
  #signin {
    left: 20px;
  }
  .signin {
    left: 20px;
  }
  .form-input-btn.local-auth {
    width: auto;
    height: auto;
  }
  .form-text {
    font-size: 14px;
  }
}

