@layer components {
  /* Account Component
     ========================================================================== */

  .account__status-pill {
    position: absolute;
    bottom: 0.7rem;
    right: 0.7rem;
  }

  .account__logo {
    display: inline-flex;
    position: relative;
    margin-bottom: 24px;
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
  }

  @media (min-width: 50rem) {
    .account__logo {
      margin-left: 2rem;
      margin-bottom: 0;
    }
  }

  .account__logo__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    border-radius: var(--border-radius);
  }

  .account__logo--empty {
    border: var(--border);
    border-style: dashed;
    border-radius: var(--border-radius);
    display: flex;
    height: 150px;
    width: 150px;
    justify-content: center;
    align-items: center;
  }
}
