.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
  filter: drop-shadow(0 3px 7px rgba(21, 148, 71, 0.18));
}

.auth-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 14px;
  color: #18202a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.auth-brand-logo {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(21, 148, 71, 0.2));
}

.form-panel > .auth-brand {
  display: flex;
}

@media (max-width: 760px) {
  .public-topbar {
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .brand {
    gap: 7px;
    font-size: 14px;
    line-height: 1.2;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .auth-brand-logo {
    width: 68px;
    height: 68px;
  }
}
