.brand {
  gap: 9px;
  line-height: 1;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 7px rgba(48, 213, 255, 0.32));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.05);
  filter: drop-shadow(0 0 10px rgba(48, 213, 255, 0.52));
}

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

.brand-name {
  color: #f3fbff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.75px;
  white-space: nowrap;
}

.brand-domain {
  color: #47e4d0;
}

.brand small {
  display: block;
  color: #79b9d8;
  font-size: 8px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-brand .brand-mark {
  width: 46px;
  height: 46px;
}

.auth-brand .brand-name {
  color: #f3fbff;
  font-size: 19px;
  letter-spacing: 1px;
}

.auth-brand .brand-domain {
  color: #47e4d0;
}

.auth-brand small {
  display: block;
  color: #82bad5;
  font-size: 10px;
  letter-spacing: 1px;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .brand-name {
    font-size: 13px;
  }

  .brand small {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
}
