/* Signup page — Band Matchmaker shell (pairs with registration/signup.html) */

:root {
  --bmm-signup-accent: #5e17eb;
  --bmm-signup-accent-soft: rgba(94, 23, 235, 0.12);
}

.bmm-signup-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    165deg,
    #f9f7ff 0%,
    #eef1f8 42%,
    #f2eff9 100%
  );
}

.bmm-signup-topbar {
  background: rgba(33, 37, 41, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bmm-signup-brand {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.bmm-signup-brand:hover {
  color: #fff;
  opacity: 0.92;
}

.bmm-signup-brand-mark {
  color: var(--bmm-signup-accent);
}

.bmm-signup-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

.bmm-signup-card {
  max-width: 32rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  box-shadow:
    0 0.5rem 1.5rem rgba(33, 37, 41, 0.08),
    0 0.125rem 0.375rem rgba(33, 37, 41, 0.04);
  overflow: hidden;
}

.bmm-signup-card-header {
  background: linear-gradient(
    135deg,
    var(--bmm-signup-accent-soft) 0%,
    transparent 55%
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bmm-signup-icon {
  color: var(--bmm-signup-accent);
}

.bmm-signup-captcha .g-recaptcha {
  transform-origin: top left;
}

@media (max-width: 400px) {
  .bmm-signup-captcha .g-recaptcha {
    transform: scale(0.9);
  }
}
