.auth-brandline,
.header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.company-logo {
  display: inline-flex;
  align-items: center;
  width: 112px;
  height: 34px;
  overflow: hidden;
}

.company-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.company-logo.on-dark {
  width: 122px;
  height: 36px;
  padding: 7px 9px;
  border-radius: 10px;
  background: white;
}

.company-logo.header-logo {
  width: 104px;
  height: 30px;
}

.header-actions {
  flex: 0 0 auto;
}

@media (max-width: 410px) {
  .company-logo.header-logo {
    display: none;
  }

  .company-logo.on-dark {
    width: 104px;
  }
}

