/* wrapper fica logo abaixo do botão Entrar, com largura do formulário */
.register-wrapper {
  margin-top: 12px;
  text-align: center;
}

/* ===== Opção A: texto + link ===== */
.register-inline {
  font-size: 14px;
  color: hsl(240 5% 26%); /* tom neutro; pode usar var(--muted-foreground) se tiver */
  margin: 0;
}
.register-link-inline {
  color: #6b1ec9;            /* roxo do seu tema */
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.register-link-inline:hover {
  color: #5616a5;
  border-bottom-color: currentColor;
}

/* ===== Opção B: botão secundário full width ===== */
/* (use se preferir o botão grande no lugar do texto; ative no JS trocando o bloco) */
.register-btn {
  display: block;
  width: 100%;               /* casa com inputs e botão Entrar */
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #852cf0;       /* primária */
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,.12);
  transition: transform .12s ease, opacity .12s ease, background .12s ease;
}
.register-btn:hover {
  background: #6b1ec9;
  transform: translateY(-1px);
}


/* FAB Perfil – aparece em todas as páginas EXCETO login (pois o JS bloqueia lá) */
.cl-profile-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: #852cf0;              /* primária */
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  z-index: 1000;
  transition: transform .12s ease, background .12s ease, opacity .12s ease;
}

.cl-profile-fab:hover {
  background: #6b1ec9;
  transform: translateY(-1px);
}

.cl-profile-icon { fill: currentColor; display: block; }
.cl-profile-label { line-height: 1; }

/* responsivo: vira bolinha só com ícone em telas menores */
@media (max-width: 640px) {
  .cl-profile-fab { padding: 12px; }
  .cl-profile-label { display: none; }
}
