/* =====================================================
   Auth pages — Login + Register
   Brandmakers Agency Design System
   ===================================================== */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-box {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}
.auth-logo-icon {
  width: 56px; height: 56px;
  background: #050505;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 12px;
}
.auth-logo-title {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.auth-logo-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.auth-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  font-family: 'Unbounded', sans-serif;
}

/* Telegram widget wrapper */
.tg-widget-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
  min-height: 36px;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.auth-footer a {
  color: var(--primary);
  font-weight: 600;
}
.auth-footer a:hover { opacity: 1; text-decoration: underline; }

.bonus-badge {
  background: #fff0eb;
  border: 1px solid rgba(255,79,0,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}
.bonus-badge strong { color: var(--primary); }

@media (max-width: 480px) {
  .auth-box { padding: 28px 20px; }
}
