﻿input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.page-body {
  padding-top: 0 !important
}

.background {
  background: rgb(255, 255, 255) !important
}

.auth-image {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-image: url(/images/login_page_background.png);
}

@media only screen and (max-width: 899px) {
  .auth-image {
    width: 100%;
    height: 100vh;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0.33;
  }
}

@media only screen and (min-width: 900px) {
  .auth-image {
    width: calc(100% - 33%);
    max-width: calc(100% - 500px);
    min-width: calc(100% - 800px);
    height: 100vh;
    position: fixed;
    right: 0;
  }

  .auth-form-wrapper {
    width: 33%;
    min-width: 500px;
    max-width: 800px;
    height: 100vh;
    float: left;
  }
}

.auth-form {
  padding: 0 1rem;
  padding-top: 5vh;
}

  .auth-form .line {
    float: left;
    width: calc(50% - 25px);
    border-bottom: 2px solid #ccc;
    min-height: .8rem;
  }

  .auth-form .or {
    width: 50px;
    float: left;
    text-align: center;
  }

  .auth-form > div:not(.input-field) {
    margin-bottom: 1rem
  }

  .auth-form .row.oauth > .col {
    padding: 5px;
  }
