.brand {
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 48px;
  height: 42px;
  padding: 3px 5px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 1px #ffffff24;
}

.brand-logo img,
.login-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand-copy small {
  font-size: 11px;
  color: var(--orange);
  font-weight: 750;
}

.login-logo {
  width: 128px;
  height: 108px;
  padding: 7px 9px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 40px #0005;
}

@media (max-width: 650px) {
  .brand-logo {
    width: 42px;
    height: 36px;
  }

  .brand-copy {
    display: none;
  }
}
