input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset; }

body {
  font-family: Calibri, Tahoma, sans-serif;
  background-color: white;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #4d4c4c;
  height: 100vh; }

form {
  width: 300px;
  max-width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center; }
  form * {
    margin: 12px 0; }
  form h1 {
    padding: 0;
    color: #424242; }
  form h1.logo {
    margin: 0;
    color: #15A960;
    font-weight: 300;
    margin-bottom: 28px; }
    form h1.logo img {
      margin: 0;
      height: 24px;
      padding-right: 6px; }
  form h1.greeting {
    font-size: 24pt;
    font-weight: 300;
    text-align: center; }
  form input {
    width: 100%;
    padding: 12px 6px;
    border-radius: 4px;
    border: 1px solid #a5a5a5;
    display: block;
    font-size: 14pt;
    line-height: 16pt;
    color: #424242; }
  form button {
    background-color: #15A960;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    color: white;
    padding: 12px 48px;
    font-size: 11pt;
    box-shadow: 0 4px 16px #eee;
    display: block; }
  form .forgot, form .back {
    font-size: 10pt;
    color: grey;
    text-decoration: none; }
  form p {
    text-align: center; }