

  @font-face {
    font-family: 'Lato';
    src: url('/fonts/vendor/lato/files/lato-all-400-normal.woff') format('woff'),
         url('/fonts/vendor/lato/files/lato-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Lato';
    src: url('/fonts/vendor/lato/files/lato-all-700-normal.woff') format('woff'),
         url('/fonts/vendor/lato/files/lato-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }


  @font-face {
    font-family: 'Roboto';
    src: url('/fonts/vendor/roboto/files/roboto-all-400-normal.woff') format('woff'),
         url('/fonts/vendor/roboto/files/roboto-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Roboto';
    src: url('/fonts/vendor/roboto/files/roboto-all-700-normal.woff') format('woff'),
         url('/fonts/vendor/roboto/files/roboto-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }
  

html body {
    position: relative;
    height: 100vh;
  
    font-family: Inter, sans-serif;
    font-style: normal;
    line-height: 150%; /* 36px */
    letter-spacing: 0.15px;
    color: rgb(85, 128, 0);
  
    background-color: #EEEEEE;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .container {
    display: flex;
    flex-direction: column;
  
    width: 100%;
    max-width: 400px;

    border-radius: 18px;
    background: #FFF;
  }
  .container_body {
    padding: 2.5rem;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  
  h1 {
    font-size: 24px;
  }
  
  a {
    color: #00645F;
  }
  
  @media (max-width: 500px) {
    html body {
      padding: 1.5rem;
      padding-top: 2em;
   }
    
  }
  
  .debug_info {
    font-family: monospace;
    font-size: small;
    padding: 1.5em;
  }
  
  
  .form-inline {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .form-inline .provider-wrapper {
    margin: auto 0;
  }
  
  .form-inline label {
    margin: 0 10px 4px 0;
  
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
    letter-spacing: 0.15px;
  }
  
  .form-inline select, .form-inline input {
    width: 100%;
    height: 40px;
  
    padding: 0 16px;
    margin: 10px 0;
  
    border-radius: 8px;
    border: 1px solid rgb(255, 187, 17);
    background: rgb(255, 187, 17);
    color: rgb(51, 51, 51);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
    letter-spacing: 0.15px;
  }
  
  .form-inline select {
    outline: none;
    font-weight: 400;
  }
  
  .form-inline input[type=submit] {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    background: rgb(255, 187, 17);
    color: rgb(51, 51, 51);
  
    border-radius: 24px;
  }
  
  .form-inline input[type=submit]:hover, .form-inline input[type=submit]:active {
    color: #fff;
    background-color: rgb(255, 187, 17);
  }
  
  .logo_wrapper {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding: 2.5em;
    padding-bottom: 1.5em;
    background: black;
  }

  .logo_wrapper img {
    width: 100px;
  }