*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

.cf:before,
.cf:after {
  content: "";
  display: table; }

.cf:after {
  clear: both; }

/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1; }

html {
  height: 100%; }

body {
  background: url("../images/pattern.png") #f5f5f5;
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 14px; }

a {
  color: #03a9f5;
  font-size: 15px; }

.topLine {
  background: #03a9f5;
  height: 10px; }

.forgotPasword {
  cursor: pointer; }

.forgotPasword:hover {
  text-decoration: underline; }

.loginBoxWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 10px); }

.loginBox {
  display: block;
  position: relative;
  padding: 10px;
  width: 400px;
  border-radius: 3px;
  background: white;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.26);
  overflow: hidden; }

.photo {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 30px 135px 15px 135px;
  border-radius: 50%;
  border: 13px solid #dfdfdf;
  overflow: hidden !important;
  background: url("../images/acc-bg.png") 4px 0 no-repeat #dfdfdf; }

.loginInfo {
  letter-spacing: -0.3px;
  text-align: center;
  margin-top: 20px; }

.clientLogo {
  margin: 30px auto 15px auto;
  width: 260px;
  text-align: center;
  position: relative;
  height: 100px;
  display: block; }
  .clientLogo img {
    position: relative;
    top: 5%;
    max-width: 250px;
    max-height: 100px; }

.intro {
  text-align: center;
  color: #5a5a5a;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-size: 15px; }

form, .formHolder {
  position: relative;
  margin: 0 15px 50px 15px; }

.formHolder {
  text-align: center; }

.form-error {
  height: 20px; }
  .form-error errorg {
    display: block;
    color: #d34336;
    text-align: center; }

.form-success {
  color: green;
  text-align: center; }

.form-group {
  position: relative;
  margin-bottom: 20px; }
  .form-group.first {
    margin-top: 20px; }

.form-control {
  display: block;
  height: 36px;
  width: 100%;
  border: none;
  border-radius: 0 !important;
  font-size: 15px;
  font-family: inherit;
  font-weight: 300;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(117, 117, 117, 0.15); }

.form-control:focus {
  border-bottom: 2px solid #03a9f5;
  outline: none;
  box-shadow: none; }

.form-highlight {
  position: absolute;
  height: 60%;
  width: 60px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.4; }

.form-control:focus ~ .form-highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease; }

.float-label {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 16px;
  color: #999;
  font-weight: 300;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all; }

.form-control:focus ~ .float-label, .form-control:valid ~ .float-label {
  top: -15px;
  font-size: 12px; }

.form-control::-webkit-autofill ~ .float-label {
  top: -15px;
  font-size: 12px; }

.form-group erroru, .form-group errorp {
  position: absolute;
  width: 100%;
  left: 0;
  top: 38px;
  font-size: 11px;
  color: #d34336;
  font-weight: 300;
  transition: 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) all;
  -moz-transition: 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) all;
  -webkit-transition: 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55) all;
  opacity: 0; }

.form-group erroru i, .form-group errorp i {
  position: absolute;
  right: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  float: right; }

.form-group erroru i svg, .form-group errorp i svg {
  fill: #d34336; }

.form-group[errr] .float-label {
  color: #d34336 !important; }

.form-group[errr] .form-control {
  border-bottom: 1px solid #d34336 !important; }

.form-group[errr] .form-control:focus {
  border-bottom: 2px solid #d34336 !important; }

.form-group[errr] erroru, .form-group[errr] errorp {
  opacity: 1; }

input[type=checkbox] {
  display: none;
  visibility: hidden; }

input[type="checkbox"] + label {
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out; }

input[type="checkbox"] + label:before {
  display: inline-block;
  content: "";
  margin: 4px 10px 10px 0px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 2px solid #5a5a5a;
  border-radius: 2px;
  vertical-align: middle; }

input[type=checkbox]:checked + label:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwcHgiIGhlaWdodD0iMTVweCIgdmlld0JveD0iMCAwIDIwIDE1Ij4NCjxwb2x5Z29uIGZpbGw9IiNGRkZGRkYiIHBvaW50cz0iNy4xNDMsMTQuOTM4IDAsNy43OTYgMi4wMjEsNS43NzYgNy4xNDMsMTAuODk4IDE3Ljk3OSwwLjA2MiAyMCwyLjA4MiAiLz4NCjwvc3ZnPg0K");
  background-color: #03a9f5;
  border-color: #03a9f5;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-background-size: 11px auto;
  -moz-background-size: 11px auto;
  -o-background-size: 11px auto;
  background-size: 11px auto; }

input[type="submit"] {
  -webkit-appearance: none;
  position: relative;
  float: right;
  font-family: inherit;
  font-weight: 100;
  font-size: 15px;
  border: 0;
  margin: -3px 0px;
  padding: 5px 30px;
  border-radius: 3px;
  cursor: pointer;
  background: #03a9f5;
  color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37); }

input[type="submit"]:focus {
  outline: none; }

.button {
  float: right;
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  font-weight: 100;
  font-size: 15px;
  border: 0;
  margin: -3px 0px;
  padding: 5px 30px;
  border-radius: 3px;
  cursor: pointer;
  background: #03a9f5;
  color: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37); }

.loginIcon {
  display: inline-block;
  position: relative;
  top: 4px; }

a.moreOptions {
  text-decoration: none; }

a.moreOptions2 {
  text-decoration: none;
  float: left;
  margin-top: 3px; }

.addFooter {
  padding-top: 19px; }

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  margin-left: -10px;
  padding: 0 20px;
  line-height: 49px;
  cursor: pointer;
  border-top: 1px solid rgba(117, 117, 117, 0.15);
  color: #999; }
  footer a {
    color: #999;
    text-decoration: none; }
  footer .logo {
    position: absolute;
    top: 8px;
    right: 20px; }

.moreOptionsGroup {
  text-align: left; }

.oneOption {
  border-bottom: 1px solid #dadada;
  padding: 10px 0;
  margin: 10px 0 0 0;
  opacity: 0.65; }
  .oneOption:hover {
    opacity: 1;
    cursor: pointer; }

@media only screen and (max-width: 600px) {
  body {
    background: white; }

  .rememberMeFormGroup {
    height: 40px; }

  .loginBox {
    align-self: flex-start;
    width: auto;
    height: auto;
    border-radius: 0;
    background: white;
    box-shadow: none;
    overflow: hidden; }

  #rememberMe {
    display: none; }

  #rememberMeLabel {
    display: none; }

  form {
    margin-bottom: 100px; } }

/*# sourceMappingURL=login.css.map */
