/* assets/themes/auth.css */
/* Lightweight add-on that matches your dark/glass BeatBounce layout */

.bb-auth {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px 60px;
}

.bb-auth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 980px) {
  .bb-auth-grid {
    grid-template-columns: 1fr 420px;
    align-items: start;
  }
}

.bb-auth-hero {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  min-height: 220px;
}

.bb-auth-hero h1 {
  margin: 0 0 8px 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .2px;
}

.bb-auth-hero p {
  margin: 0;
  opacity: .75;
  line-height: 1.5;
}

.bb-auth-card {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.bb-auth-title {
  margin: 0 0 4px 0;
  font-size: 22px;
  font-weight: 800;
}

.bb-auth-sub {
  margin: 0 0 14px 0;
  opacity: .70;
  font-size: 13px;
}

.bb-auth-error {
  border: 1px solid rgba(255, 80, 80, .35);
  background: rgba(255, 80, 80, .12);
  padding: 10px 12px;
  border-radius: 12px;
  margin: 0 0 12px 0;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

.bb-field { margin-bottom: 12px; }
.bb-label {
  display: block;
  font-size: 12px;
  opacity: .80;
  margin-bottom: 6px;
}

.bb-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  outline: none;
}

.bb-input:focus {
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}

.bb-btn {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.95);
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 800;
}

.bb-btn:hover { background: rgba(255,255,255,.12); }

.bb-auth-links {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.bb-link {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.25);
  padding-bottom: 2px;
  font-size: 12px;
}

.bb-link:hover {
  color: rgba(255,255,255,.95);
  border-bottom-color: rgba(255,255,255,.55);
}

/* Optional: small button links row (discord + create account etc.) */
.bb-linkbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 8px 10px;
  color: rgba(255,255,255,.90);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.bb-linkbtn:hover { background: rgba(255,255,255,.10); }
