  .card {
    margin: 10px;
    padding: 10px;
    color: #757575;
  }

.fixed {
  position: fixed;
  z-index: 199;
  left: 0;
  top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #e8eaf1;
    overflow-y: auto;
    display: flex;
}



  .left {
    display: none;
  }

  .right {
    display: block;
    flex-grow: 1;
    background-color: white;
  }

  /* mobile */
  .loginouterpanel {
    padding-top: calc(var(--app-safe-area-inset-top, 0px));
    width: 100%;
    display: flex;
    flex-direction: column;
    /* align horizontal */
    justify-content: top;
    /* align vertical */
    align-items: center;
  }

  .failure {
    background: white;
    color: #474747;
    border: 2px solid #ed473b;
    border-radius: 4px;
    padding: 7px 18px 7px 18px;
    font-weight: 400;
    font-size: 16px;
  }

  .loginpanel {
    width: calc(100% - 20px);
    padding-top: 10px;
    margin: 0px;
    display: flex;
    flex-direction: row;
  }

  .formlayout {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .rememberlayout {
    display: flex;
    flex-direction: row;
  }

  .spacingtop {
    margin-top: 10px;
  }

  .spacingtoplarge {
    margin-top: 20px;
  }

  .topmessage{
    background: white;
    color: #474747;
    border: 2px solid var(--lumo-warning-color);
    border-radius: 4px;
    padding: 7px 18px 7px 18px;
    font-weight: 400;
    font-size: 16px;
    width: calc(100% - 40px);
    margin-bottom: 20px;
  }

  .errormessage {
    width: unset;
  }
  .header {
    padding-top: 0px;
    margin-top: 0px;
  }
  .field {
    width: 100%;
  }
  .logindivider {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .small {
    font-size: 13px;
  }
  .labelOr {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .labelTerms {
    margin-top: 20px;
    margin-bottom: 20px;
  }


  .labelDescription {
    font-weight: bold;
    background: yellow;
  }
  
  .logindivider {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .spacingtop {
    margin-top: 10px;
  }
  .link {
    cursor: pointer;
    color: rgb(25, 125, 225);
    text-decoration: underline;
    font-weight: inherit;
    transition: color 140ms ease 0s;
  }
  .failureicon {
    height: 14px;
    width: 14px;
    color: #ed473b;
  }
  @media only screen and (min-width: 872px) {
    .loginpanel {
      width: 450px;
      padding: 0px;
      margin-top: 20px;
    }
    .topmessage {
      width: 430px;
    }
    .formlayout {
      padding-left: 35px;
      padding-right: 35px;
    }
  }
  @media only screen and (min-width: 1550px) {
    .left {
      display: flex;
      flex-grow: 1;
      flex-basis: 100px;
      align-items: center;

    }
    .right {
      display: block;
      flex-basis: 100px;
      flex-grow: 1;
    }
  }
  @media only screen and (min-height: 800px) {
    .loginouterpanel {
      justify-content: center;
      height: 100vh;
    }
  }
