  .account-card {
    display: flex;
    flex-direction: column;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    border: 2px solid var(--color-td-grey);
    border-radius: 24px;
    box-sizing: border-box;
    transition: 0.5s height ease;
    padding: 24px;
  }

  .account-card.dashed {
    border-style: dashed !important;
  }

  .account-card.hover {
    border-color: transparent !important;
  }

  .account-card.hover:hover {
    border-color: var(--color-dark-grey) !important;
  }

  .account-card-header {
    display: flex; 
    flex-direction: row;
    margin-bottom: 12px;
  }

  .component-paragraph + .account-card {
    margin-top: 24px;
  }

  .account-card + .account-card {
    margin-top: 12px;
  }

  .account-card .component-title + .component-subtitle {
    margin-top: 3px;
  }

  .account-card-row {
    display: flex; 
    flex-direction: row; 
    gap:6px; 
  }

  .account-card-row div {
    box-sizing: border-box;
  }

  .account-card.centered{
    margin-left: auto;
    margin-right: auto;
    width: min(400px, 100%);
    align-items: center;
    padding: 48px;
  }

  .account-card-logo {
    margin-right: 12px; 
    box-sizing: border-box; 
    background-color: var(--color-faint-blue); 
    border-radius: 45px; 
    width: 45px; 
    height: 45px; 
    min-width: 45px; 
    min-height: 45px; 
    padding: 12px;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 600;
    font-variant: small-caps;
  }

  @media screen and (max-width: 400px) {
    .account-card-logo.responsive {
      width: 64px; 
      height: 64px; 
      min-width: 64px; 
      min-height: 64px; 
    }
  }



  .account-card.centered .account-card-logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    margin-right: 0px;
    position: relative;
  }

  .account-card.centered .account-card-logo svg {
    content: '';
    width: 32px;
    height: 32px;
    padding: 6px;
    position: absolute;
    bottom: -3px;
    right: -3px;
    background-color: #0044A6;
    outline: 2px solid #FFF;
    border-radius: 100%;
    box-sizing: border-box;
  }

  .account-card.centered .account-card-logo svg[error]{
    background-color: var(--color-red-dark);
  }

  .account-card.centered .account-card-logo svg[success]{
    background-color: var(--color-green-secondary);
  }

  .account-card-title {
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-broken-black);
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .account-card .component-paragraph.centered {
    text-align: center;
  }

  .account-card-hint {
     font-size: 14px; 
     text-align: center;
     margin-top: 24px;
  }

  .account-card-hint a {
    font-weight: 700;
    text-decoration: none;
    color: var(--color-broken-black);
  }

  .account-card-hint a:hover {
    text-decoration: underline;
  }

  .account-card-hint a:visited {
    color: var(--color-broken-black);
  }

  .account-card-container {
    display: flex;
    flex-direction: column;
    margin-top: 36px;
    gap: 12px;
    width: 100%;
    align-items: center;
  }

  .account-card-form {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 8px;
  }

  .input-parent {
    position: relative;
  }

  .input-parent.hidden {
    display: none;
  }

  .input-parent svg:first-of-type {
    position: absolute;
    top: 6px;
    left: 8px;
    width: 16px;
    height: 16px;
  }

  .account-card-form input {
    padding-left: 30px;
  }

  #login-result-container {
    display: none;    
  }

  .account-form-columns {
    gap: 6px;
    display: grid;
    margin-top: 12px;
  }

  .account-form-columns div:not(.button) {
    display: flex;
    line-height: 27px;
  }

  .account-form-columns > div.right {
    justify-content: right;
  }

  .account-form-columns[col="2"] {
    grid-template-columns: 150px auto;
  }

  .account-form-columns[col="2"][small] {
    max-width: 350px;
  }

  .account-form-columns[col="2"][medium] {
    max-width: 450px;
  }

  .account-form-columns[col="2"] > *:nth-child(odd) {
    font-weight: 500;
  }

  .account-form-columns[c-x]{
    grid-template-columns: 40px auto;
  }

  .account-form-columns[c-cc-x]{
    grid-template-columns: 40px 150px auto;
  }

  .account-form-row[c-cc-x]{
    display:grid;
    grid-template-columns: 40px 150px auto;
    align-items:center;
    transition: background .15s;
    width: 100%;
    gap: 6px;
  }

  .account-form-row:hover{
    background:#f5f7fb;
  }

  .account-form-row {
    border-radius: 36px;
  }

  .account-form-row:first-of-type {
    margin-top: 12px;
  }

  #register-form {
    width: 235px;
  }

  .account-form-columns .row.hover:hover {
    background-color: var(--color-light-grey);
  }

  @media screen and (max-width: 500px) {
    .account-form-columns {
        grid-template-columns: auto !important;
    }
  }

  @media screen and (max-width: 920px) {

  }

.md3-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.md3-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.md3-switch-track {
  position: relative;
  width: 52px;
  height: 32px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #CBD4DA;
  box-sizing: border-box;
  transition: background-color 0.2s, border-color 0.2s;
}

.md3-switch-thumb {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #CBD4DA;
  transform: translateY(-50%);
  transition: left 0.2s, width 0.2s, height 0.2s, background-color 0.2s;
}

.md3-switch input:checked + .md3-switch-track {
  background: #101076;
  border-color: #101076;
}

.md3-switch input:checked + .md3-switch-track .md3-switch-thumb {
  left: 22px;
  width: 24px;
  height: 24px;
  background: #ffffff;
}

.md3-switch input:focus-visible + .md3-switch-track {
  outline: 3px solid rgba(103, 80, 164, 0.35);
  outline-offset: 2px;
}

.md3-switch input:disabled + .md3-switch-track {
  opacity: 0.38;
  cursor: not-allowed;
}

.account-card-divider {
  width: 100%;
  height: 1px;
  margin-top: 20px;
  background-color: var(--color-dark-grey);
}

.account-status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 12px;
}

.account-card-subtitle {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 12px;
  font-variant: all-small-caps;
}

.stat-buttons {
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr 1fr; 
  gap: 6px;
  margin-bottom: 24px;  
}

.stat-item {
  font-family: "Open Sans";
  color: #333;
  font-weight: 400;
  font-size: 15px;
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.2s background-color;
  padding: var(--navigation-button-padding);
  padding-left: calc(var(--navigation-button-padding) * 2);
  background-color: var(--color-light-grey);
  border-radius: 360px;
  min-height: 33px;
  box-sizing: border-box;
}

.stat-item.progress {
  padding-left: var(--navigation-button-padding);
}

.stat-item.blue {
  background-color: var(--color-secondary);
  color: #FFF;
}

.stat-item .statbar {
  content: '';
  width: var(--bar);
  height: 20px;
  min-width: 20px;;
  background-color: var(--color-td-grey);
  border-radius: 12px;
  left: 0px;
  position: relative;
  margin-right: 6px;
}

.statbar img {
  position: absolute;
  right: 0;
}

.stat-item:after {
  content: attr(count);
  position: absolute;
  color: #333;
  font-family: "Open Sans";
  font-weight: 300;
  right: 5px;
  font-size: 12px;
  padding: 4px;
  background-color: var(--color-td-grey);
  border-radius: 360px;;
  min-width: 20px;
  text-align: center;
}

.stat-item.blue:after {
  background-color: var(--color-primary);
  color: #FFF;
}

.component-container.hover {
  transition: box-shadow 0.1s linear;
}

.component-container.hover:hover {
    box-shadow: 0 0 0 2px var(--color-primary);
    cursor: pointer;
}

.component-container.selected {
  box-shadow: 0 0 0 2px var(--color-primary);
}

.square {
  aspect-ratio: 1 / 1;
  width: 100%;

  background-image: url("image.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}