:root {
  --auth-dark: #0d1117;
  --auth-dark-line: #21262d;
  --auth-muted: #8b949e;
  --auth-accent: #00bcd4;
}

.auth-brand-panel {
  width: 40%;
  background: var(--auth-dark);
  color: #ffffff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.auth-brand-logo {
  display: block;
  max-width: 280px;
  width: 100%;
  filter: none;
}

.auth-brand-content h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.auth-brand-content p,
.auth-brand-footer {
  color: var(--auth-muted);
}

.auth-brand-content p {
  margin: 12px 0 0;
  font-size: 16px;
}

.auth-brand-divider {
  border: 0;
  border-top: 1px solid var(--auth-dark-line);
  margin: 32px 0;
}

.auth-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.auth-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.auth-feature-check {
  color: var(--auth-accent);
  font-weight: 700;
}

.auth-brand-footer {
  font-size: 13px;
}

@media (max-width: 767px) {
  .auth-brand-panel {
    width: 100%;
    height: 80px;
    min-height: 80px;
    padding: 16px 24px;
    align-items: center;
    justify-content: center;
  }

  .auth-brand-content,
  .auth-brand-footer {
    display: none;
  }

  .auth-brand-logo-wrap {
    padding: 10px 14px;
    border-radius: 14px;
  }

  .auth-brand-logo {
    max-width: 220px;
  }
}
