/**
 * CSS do Formulário de Login - Bellume Club
 * 
 * @package BellumeClub
 * @since 1.0.0
 */

/* Tokens alinhados ao perfil / companion (profile-companion.css) */
:root {
  --bc-accent: #e91e63;
  --bc-accent-dark: #c2185b;
  --bc-success: #28a745;
  --bc-danger: #dc3545;
  --bc-border: #e0e0e0;
  --bc-text: #000;
  --bc-muted: #666;
  --bc-bg-soft: #f8f9fa;
  --bc-radius: 12px;
}

/* ===== WRAPPER PRINCIPAL ===== */
.bc-login-wrapper {
  max-width: 400px;
  margin: 20px auto;
  padding: 0 15px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.bc-register-wrapper {
  max-width: 460px;
  margin: 20px auto;
  padding: 0 15px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.bc-login-container {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--bc-radius);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--bc-border);
  position: relative;
}

.bc-register-container {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--bc-radius);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--bc-border);
  position: relative;
}

/* ===== TÍTULO ===== */
.bc-login-title {
  text-align: center;
  margin: 0 0 25px 0;
  color: var(--bc-text);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif !important;
}

.bc-register-title {
  text-align: center;
  margin: 0 0 25px 0;
  color: var(--bc-text);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif !important;
}

/* ===== MENSAGENS ===== */
.bc-messages {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  animation: slideDown 0.3s ease;
}

.bc-messages.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.bc-messages.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FORMULÁRIO ===== */
.bc-emergency-login-form {
  width: 100%;
}

.bc-field-group {
  margin-bottom: 20px;
}

.bc-radio-group {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
}

.bc-radio-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #374151;
}

.bc-radio-option:last-child {
  margin-bottom: 0;
}

.bc-radio-option input {
  margin-top: 4px;
}

.bc-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--bc-muted);
  font-size: 14px;
}

.bc-required {
  color: var(--bc-danger);
  font-weight: 700;
}

/* ===== INPUTS ===== */
.bc-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  font-size: 16px;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background: var(--bc-bg-soft);
  font-family: inherit;
  color: var(--bc-text);
}

.bc-input:focus {
  outline: none;
  border-color: var(--bc-accent);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.bc-input:hover {
  border-color: #ccc;
}

.bc-input::placeholder {
  color: #9ca3af;
}

/* ===== WRAPPER DA SENHA ===== */
.bc-password-wrapper {
  position: relative;
}

.bc-password-wrapper .bc-input {
  padding-right: 48px;
}

.bc-password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
  line-height: 1;
  color: var(--bc-muted);
}

.bc-password-toggle:hover {
  background-color: var(--bc-bg-soft);
  color: var(--bc-accent);
}

.bc-eye-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.bc-eye-icon i {
  font-size: 1.05rem;
  color: inherit;
}

/* ===== CHECKBOX ===== */
.bc-checkbox-group {
  margin-bottom: 24px;
}

.bc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--bc-muted);
  user-select: none;
}

.bc-login-container .bc-checkbox-label input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
}

.bc-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  cursor: pointer;
  accent-color: var(--bc-accent);
  border-radius: 5px;
}

/* ===== BOTÃO DE SUBMIT ===== */
.bc-submit-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--bc-accent), var(--bc-accent-dark));
  color: #fff;
  border: none;
  border-radius: var(--bc-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.bc-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.bc-submit-btn:active {
  transform: translateY(0);
}

.bc-submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.bc-btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== LINKS ===== */
.bc-login-links {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.bc-login-links a {
  color: var(--bc-accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bc-login-links a:hover {
  color: var(--bc-accent-dark);
  text-decoration: underline;
}

.bc-forgot-password-link {
  display: inline-block;
  margin-bottom: 12px;
}

.bc-register-link {
  font-size: 14px;
  color: #6b7280;
  margin-top: 12px;
}

/* ===== MENSAGEM DE USUÁRIO LOGADO (mesmo visual da caixa branca de login) ===== */
.bc-login-container .bc-logged-in-message {
  max-width: none;
  margin: 0;
  padding: clamp(20px, 3vw, 28px);
  background:
    radial-gradient(circle at top right, rgba(233, 30, 99, 0.12), transparent 45%),
    #ffffff;
  border: 1px solid rgba(233, 30, 99, 0.2);
  border-radius: 18px;
  box-shadow:
    0 10px 32px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  text-align: center;
}

.bc-user-welcome {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(22px, 4vw, 32px);
  width: 100%;
}

.bc-logged-in-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.bc-logged-in-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 30, 99, 0.1);
  color: var(--bc-accent-dark);
  border: 1px solid rgba(233, 30, 99, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.bc-logged-in-message h3,
.bc-logged-in-title {
  margin: 0;
  color: var(--bc-text);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}

.bc-logged-in-message p,
.bc-logged-in-subtitle {
  margin: 0;
  color: var(--bc-muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 28rem;
}

.bc-user-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  padding-top: clamp(16px, 3vw, 22px);
  margin-top: 0;
  border-top: 1px solid rgba(224, 224, 224, 0.9);
}

.bc-user-actions-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.bc-user-actions-primary .bc-btn {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
}

.bc-user-logout-btn {
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 2px;
}

.bc-btn-outline {
  background: transparent;
  color: var(--bc-muted);
  border: 2px solid var(--bc-border);
  box-shadow: none;
}

.bc-btn-outline:hover {
  border-color: var(--bc-accent);
  color: var(--bc-accent-dark);
  background: rgba(233, 30, 99, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.12);
}

@media (max-width: 480px) {
  .bc-user-actions-primary {
    grid-template-columns: 1fr;
  }
}

/* ===== BOTÕES GERAIS ===== */
.bc-btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-size: 14px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.bc-btn-primary {
  background: linear-gradient(135deg, var(--bc-accent), var(--bc-accent-dark));
  color: #fff;
}

.bc-btn-primary:hover {
  background: linear-gradient(135deg, var(--bc-accent-dark), #880e4f);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.bc-btn-secondary {
  background: #6c757d;
  color: white;
}

.bc-btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* ===== ERROS DE CAMPO ===== */
.bc-field-error {
  margin-top: 5px;
  padding: 6px 10px;
  background: #fed7d7;
  color: #c53030;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  border-left: 3px solid #e53e3e;
}

.bc-password-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
}

/* ===== PÁGINA DE AUTENTICAÇÃO ===== */
.bc-auth-page {
  padding: 60px 0;
  /* background: linear-gradient(180deg, #f6f7fb 0%, #ffffff 100%); */
}

.bc-auth-layout {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

.bc-auth-layout--single {
  max-width: 480px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

/* Página com hero (fundo no body via inline — secção transparente para não “cortar” a imagem) */
body.bc-auth-body .bc-auth-page {
  padding: clamp(32px, 6vh, 72px) clamp(16px, 4vw, 32px);
  position: relative;
  background: transparent;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

body.bc-auth-body .bc-auth-layout--single {
  max-width: min(560px, 100%);
  width: 100%;
}

/* Cartão maior: branco sólido (mesmo padrão das outras páginas BC) */
body.bc-auth-body .bc-login-wrapper:not(.auth-card),
body.bc-auth-body .bc-register-wrapper:not(.auth-card) {
  max-width: min(520px, 100%);
}

body.bc-auth-body .bc-login-wrapper.auth-card,
body.bc-auth-body .bc-register-wrapper.auth-card {
  max-width: min(520px, 100%);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

body.bc-auth-body .bc-login-container,
body.bc-auth-body .bc-register-container {
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 48px);
  border-radius: 24px;
  border: 1px solid var(--bc-border);
  background: #ffffff;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(15, 23, 42, 0.18);
}

body.bc-auth-body .bc-login-container:hover,
body.bc-auth-body .bc-register-container:hover {
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.08),
    0 28px 56px rgba(15, 23, 42, 0.22);
}

body.bc-auth-body .bc-login-title,
body.bc-auth-body .bc-register-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 28px;
  color: var(--bc-text);
  letter-spacing: -0.02em;
}

body.bc-auth-body .bc-login-container .bc-logged-in-message {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: inherit;
}

body.bc-auth-body .bc-login-container .bc-logged-in-message .bc-user-welcome h3,
body.bc-auth-body .bc-logged-in-message h3,
body.bc-auth-body .bc-logged-in-title {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--bc-text);
  margin-bottom: 0;
  line-height: 1.25;
}

body.bc-auth-body .bc-login-container .bc-logged-in-message p,
body.bc-auth-body .bc-logged-in-message p,
body.bc-auth-body .bc-logged-in-subtitle {
  font-size: 1.0625rem;
  color: var(--bc-muted);
  margin-bottom: 0;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

body.bc-auth-body .bc-user-actions {
  gap: 12px;
  margin-top: 0;
  padding-top: clamp(18px, 3vw, 24px);
}

body.bc-auth-body .bc-user-actions-primary .bc-btn {
  padding: 14px 18px;
  font-size: 15px;
  border-radius: 12px;
  font-weight: 600;
  min-width: 0;
  box-shadow: 0 4px 14px rgba(233, 30, 99, 0.25);
}

body.bc-auth-body .bc-user-logout-btn.bc-btn-outline {
  box-shadow: none;
}

body.bc-auth-body .bc-user-logout-btn.bc-btn-outline:hover {
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.12);
}

/* Estado “já logado”: cartão com altura mínima equilibrada */
body.bc-auth-body .bc-login-container:has(.bc-logged-in-message) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(360px, 52vh);
}

body.bc-auth-body .bc-input {
  border-radius: var(--bc-radius);
  background: var(--bc-bg-soft);
  border-color: var(--bc-border);
}

body.bc-auth-body .bc-submit-btn {
  border-radius: var(--bc-radius);
  padding: 15px 22px;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.28);
}

body.bc-auth-body .bc-login-links {
  border-top-color: var(--bc-border);
  margin-top: 28px;
  padding-top: 22px;
}

.bc-auth-card {
  background: transparent;
}

.bc-auth-card h1,
.bc-auth-card h2 {
  margin-bottom: 20px;
  color: #1f2937;
  font-weight: 600;
}

.bc-login-wrapper.auth-card,
.bc-register-wrapper.auth-card {
  margin: 0;
  padding: 0;
  max-width: none;
}

.bc-login-wrapper.auth-card .bc-login-container,
.bc-register-wrapper.auth-card .bc-register-container {
  height: 100%;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 480px) {
  .bc-login-wrapper {
    margin: 10px;
    padding: 0;
  }

  .bc-register-wrapper {
    margin: 10px;
    padding: 0;
  }

  .bc-login-container {
    padding: 20px;
    border-radius: 8px;
  }

  .bc-register-container {
    padding: 20px;
    border-radius: 8px;
  }

  .bc-login-title {
    font-size: 20px;
  }

  .bc-input {
    font-size: 16px; /* Previne zoom no iOS */
  }

  .bc-user-actions {
    flex-direction: column;
  }

  .bc-btn {
    width: 100%;
    text-align: center;
  }

  .bc-auth-layout {
    grid-template-columns: 1fr;
  }

  .bc-auth-page {
    padding: 40px 0;
  }
}

/* ===== ESTADOS DE HOVER E FOCUS ===== */
.bc-login-container:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

/* ===== ANIMAÇÕES ===== */
.bc-login-wrapper {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ACESSIBILIDADE ===== */
.bc-input:focus,
.bc-submit-btn:focus,
.bc-btn:focus {
  outline: 2px solid var(--bc-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* =============================================================================
   Login / registro: remove faixa vazia abaixo do rodapé (Avada e temas com
   min-height no body/html quando o conteúdo é mais baixo que a viewport).
   ============================================================================= */
body.bc-auth-body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Cor de fallback atrás do body (evita flash antes da imagem) */
html:has(body.bc-auth-body) {
  min-height: 100%;
  background-color: #0f172a;
}

/*
 * Wrappers transparentes para o hero aparecer em #main.
 * O cabeçalho Avada fica dentro do mesmo #wrapper: sem fundo próprio, o hero “invade” o topo
 * em alguns breakpoints (ex.: 1920×1080). Forçamos faixa opaca só no header (regra abaixo).
 */
body.bc-auth-body #wrapper,
body.bc-auth-body #boxed-wrapper,
body.bc-auth-body .fusion-body-outer-wrapper,
body.bc-auth-body .fusion-tb-page,
body.bc-auth-body #main,
body.bc-auth-body #main .fusion-row,
body.bc-auth-body #main .post-content,
body.bc-auth-body #main .fusion-builder-row {
  background-color: transparent !important;
  background-image: none !important;
}

/*
 * Cabeçalho: só cor sólida por baixo — não usar background-image:none (o Avada usa
 * gradientes/imagens no header; remover quebra altura, alinhamento da logo e largura útil em 1920).
 */
body.bc-auth-body .awb-above-header,
body.bc-auth-body .fusion-tb-header,
body.bc-auth-body .fusion-header-wrapper,
body.bc-auth-body .fusion-secondary-header,
body.bc-auth-body .fusion-secondary-main-menu,
body.bc-auth-body .fusion-sticky-header-wrapper {
  background-color: #ffffff !important;
  flex-shrink: 0;
  flex-grow: 0;
}

body.bc-auth-body .fusion-header,
body.bc-auth-body .fusion-header-v1,
body.bc-auth-body .fusion-header-v2,
body.bc-auth-body .fusion-header-v3,
body.bc-auth-body .fusion-header-v4,
body.bc-auth-body .fusion-header-v5,
body.bc-auth-body .fusion-header-v6,
body.bc-auth-body .fusion-header-v7 {
  background-color: #ffffff !important;
  flex-shrink: 0;
}

/* Só a linha do #main que contém o login — nunca .fusion-row do header */
body.bc-auth-body #main .fusion-row:has(.bc-auth-page) {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: clamp(12px, 3vw, 24px);
  padding-right: clamp(12px, 3vw, 24px);
  box-sizing: border-box;
}

body.bc-auth-body.admin-bar {
  min-height: calc(100vh - 32px);
  min-height: calc(100dvh - 32px);
}

/*
 * Coluna flex: 1 0 auto evita o wrapper encolher abaixo do conteúdo (1920×1080 “fininho”).
 * Sem width:100% forçado no #wrapper — preserva largura boxed / max-width do tema.
 */
body.bc-auth-body #wrapper,
body.bc-auth-body #boxed-wrapper,
body.bc-auth-body .fusion-body-outer-wrapper,
body.bc-auth-body .fusion-tb-page {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body.bc-auth-body #main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

/* Área só dentro de #main — evita alterar .fusion-row do header (menu / logo) */
body.bc-auth-body #main .fusion-row:has(.bc-auth-page),
body.bc-auth-body #main .post-content:has(.bc-auth-page),
body.bc-auth-body #main .fusion-builder-row:has(.bc-auth-page) {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

body.bc-auth-body .bc-auth-page {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

body.bc-auth-body .bc-auth-layout {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Rodapé não encolhe */
body.bc-auth-body .fusion-footer,
body.bc-auth-body .fusion-footer-widget-area,
body.bc-auth-body footer.fusion-footer-area,
body.bc-auth-body #footer,
body.bc-auth-body .fusion-tb-footer,
body.bc-auth-body .fusion-footer-copyright-area,
body.bc-auth-body .fusion-copyright-notice {
  flex-shrink: 0;
}

/* Login/registro com header Bellume (nav shell — igual planos/painel) */
body.bc-auth-nav-page.bc-acompanhantes-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: block;
  background: #f5f5f7;
}

html:has(body.bc-auth-nav-page.bc-acompanhantes-page) {
  background-color: #f5f5f7;
}

body.bc-auth-nav-page .bc-acompanhantes-body {
  background: #f5f5f7;
}

body.bc-auth-nav-page .bc-acompanhantes-main {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--bc-nav-topbar-h));
  min-height: calc(100dvh - var(--bc-nav-topbar-h));
}

body.bc-auth-nav-page .bc-auth-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vh, 48px) 16px;
  background: transparent;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

body.bc-auth-nav-page .bc-auth-layout--single {
  width: 100%;
  max-width: min(520px, 100%);
}

body.bc-auth-nav-page .bc-auth-card {
  width: 100%;
}

@media (max-width: 1023px) {
  body.bc-auth-nav-page .bc-acompanhantes-main {
    min-height: calc(100vh - var(--bc-nav-topbar-h) - var(--bc-nav-bottom-h));
    min-height: calc(100dvh - var(--bc-nav-topbar-h) - var(--bc-nav-bottom-h));
  }
}
