/* ======================================
   AUTENTICAÇÃO - DESIGN PREMIUM MODERNO 2024
====================================== */
:root {
  /* Paleta de cores original em azul */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-rgb: 37, 99, 235;
  --primary-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --primary-soft: rgba(37, 99, 235, 0.1);

  /* Cores secundárias */
  --secondary: #64748b;
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.1);
  --success-dark: #047857;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #0ea5e9;

  /* Tons de cinza */
  --dark: #1e293b;
  --light: #f8fafc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Fonte */
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Bordas arredondadas */
  --border-radius-sm: 6px;
  --border-radius: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-700);
  background-color: #f0f7ff;
  overflow-x: hidden;
}

/* ======================================
   LAYOUT PRINCIPAL - REDESENHADO
====================================== */

/* Container principal com fundo moderno - MODIFICADO PARA COBRIR TODA A TELA */
.auth-container {
  min-height: 100vh;
  /* Usa min-height em vez de height fixa */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  /*background: linear-gradient(135deg, #f0f7ff 0%, #f8faff 100%);*/
  background-attachment: fixed;
  /* Mantém o fundo fixo durante a rolagem */
  overflow-x: hidden;
}

/* Elementos decorativos de fundo */
.auth-container::before {
  content: "";
  position: fixed;
  /* Fixado para cobrir toda a tela */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.08) 0%, transparent 30%);
  z-index: 0;
  pointer-events: none;
  /* Permite clicar através deste elemento */
}

/* Padrão de fundo expandido para toda a página */
.auth-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right,
      rgba(37, 99, 235, 0.03) 1px,
      transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 25px 25px;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

/* Card principal redesenhado */
.auth-wrapper {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  margin: auto;
  /* Centraliza verticalmente quando o conteúdo é menor que a viewport */
}

.auth-card {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-lg);
  box-shadow:
    0 10px 25px -5px rgba(37, 99, 235, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(37, 99, 235, 0.05);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 30px -10px rgba(37, 99, 235, 0.15),
    0 10px 20px -10px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(37, 99, 235, 0.1);
}

/* Logo destacado com posicionamento moderno */
.auth-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -65px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.auth-logo-container {
  width: 130px;
  height: 130px;
  background-color: white;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 15px -3px rgba(37, 99, 235, 0.15),
    0 4px 6px -2px rgba(0, 0, 0, 0.05),
    0 0 0 6px rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-logo-container:hover {
  transform: scale(1.02);
  box-shadow:
    0 12px 18px -3px rgba(37, 99, 235, 0.2),
    0 4px 6px -2px rgba(0, 0, 0, 0.05),
    0 0 0 6px rgba(255, 255, 255, 1);
}

.auth-logo {
  width: 90px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.auth-logo-container:hover .auth-logo {
  transform: scale(1.05);
}

/* Barra superior com gradiente moderno */
.auth-card-header {
  height: 8px;
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.auth-card-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(50%);
  }
}

/* Conteúdo do card */
.auth-content {
  padding: 1.5rem 2.5rem 2.5rem;
  position: relative;
}

/* Cabeçalho redesenhado */
.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.auth-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.6;
}

/* ======================================
   MENSAGENS DE ALERTA REDESENHADAS
====================================== */
.auth-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 0;
  position: relative;
  overflow: hidden;
}

.auth-alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: currentColor;
  opacity: 0.7;
}

.auth-alert-icon {
  margin-right: 0.875rem;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.auth-alert-error {
  background-color: #FEF2F2;
  color: #B91C1C;
}

.auth-alert-success {
  background-color: #ECFDF5;
  color: #047857;
}

.auth-alert-info {
  background-color: #EFF6FF;
  color: #1E40AF;
}

/* ======================================
   FORMULÁRIO REDESENHADO
====================================== */
.auth-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.75rem;
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 1;
  max-height: 200px;
  position: relative;
}

.form-group.hidden {
  opacity: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
}

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.form-group:focus-within label {
  color: var(--primary);
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Link "Esqueceu a senha?" redesenhado */
.forgot-password-link {
  text-align: right;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  width: 100%;
  display: block;
}

.forgot-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  float: right;
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
}

.forgot-link:hover {
  color: var(--primary-dark);
  background-color: var(--primary-soft);
}

/* Inputs redesenhados para um visual mais moderno */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
  margin-bottom: 0.5rem;
  /* Espaçamento adicional abaixo do input */
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 0.875rem 1.25rem 0.875rem 3rem;
  border: 1px solid var(--gray-200);
  /* Borda mais clara por padrão */
  border-radius: 10px;
  /* Bordas mais arredondadas */
  font-size: 1rem;
  color: var(--gray-700);
  background-color: rgba(255, 255, 255, 0.8);
  /* Fundo levemente transparente */
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  /* Sombra sutil */
  backdrop-filter: blur(4px);
  /* Efeito de vidro fosco */
  -webkit-backdrop-filter: blur(4px);
}

.input-group input:hover,
.input-group select:hover {
  border-color: var(--gray-300);
  background-color: rgba(255, 255, 255, 0.9);
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border: 2px solid var(--primary);
  padding: calc(0.875rem - 1px) calc(1.25rem - 1px) calc(0.875rem - 1px) calc(3rem - 1px);
  box-shadow: 0 0 0 3px var(--primary-soft);
  background-color: white;
}

.input-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 1.125rem;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 5;
}

.input-group:focus-within {
  transform: translateY(-2px);
}

.input-group:focus-within .input-icon {
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

/* Ajuste no botão de mostrar/ocultar senha */
.password-toggle {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  z-index: 5;
  border-radius: var(--border-radius-full);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  color: var(--primary);
  background-color: var(--primary-soft);
}

.input-group input.has-value,
.input-group select.has-value {
  border-color: var(--gray-400);
}

.input-group input.has-value:focus,
.input-group select.has-value:focus {
  border: 2px solid var(--primary);
  padding: calc(0.875rem - 1px) calc(1.25rem - 1px) calc(0.875rem - 1px) calc(3rem - 1px);
}

.input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  padding-right: 2.75rem;
}

.input-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}

.filtered-select {
  border-color: var(--success) !important;
  background-color: rgba(16, 185, 129, 0.05) !important;
}

.filtered-select:focus {
  border: 2px solid var(--primary) !important;
  padding: calc(0.875rem - 1px) calc(1.25rem - 1px) calc(0.875rem - 1px) calc(3rem - 1px) !important;
}

/* Botão de login aprimorado */
.auth-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 10px;
  /* Bordas mais arredondadas para combinar com os inputs */
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 10px rgba(37, 99, 235, 0.3),
    0 0 0 1px rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
  /* Espaçamento adicional acima do botão */
}

.auth-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.7s ease;
}

.auth-btn:hover {
  box-shadow:
    0 6px 15px rgba(37, 99, 235, 0.4),
    0 0 0 1px rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
  background-image: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.auth-btn:hover::before {
  left: 100%;
}

.auth-btn:active {
  transform: translateY(0);
  box-shadow:
    0 2px 5px rgba(37, 99, 235, 0.3),
    0 0 0 1px rgba(37, 99, 235, 0.2);
}

.auth-btn i {
  font-size: 1.125rem;
}

.back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.5rem;
  border-radius: var(--border-radius);
}

.back-link:hover {
  color: var(--primary-dark);
  background-color: var(--primary-soft);
}

.back-link i {
  transition: transform 0.2s ease;
}

.back-link:hover i {
  transform: translateX(-3px);
}

/* Rodapé redesenhado */
.auth-footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  position: relative;
  padding-top: 1.5rem;
}

.auth-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-200), transparent);
}

.auth-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.auth-support i {
  color: var(--primary);
}

.auth-support a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.125rem 0.25rem;
  border-radius: var(--border-radius-sm);
}

.auth-support a:hover {
  color: var(--primary-dark);
  background-color: var(--primary-soft);
}

.auth-copyright {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ======================================
   INDICADOR DE CARREGAMENTO REDESENHADO
====================================== */
.loading-indicator {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  color: var(--gray-700);
  z-index: 10;
  animation: fadeIn 0.3s ease;
  align-items: center;
  border: 0;
}

.loading-indicator.active {
  display: flex;
}

.loading-spinner {
  margin-right: 0.75rem;
  color: var(--primary);
  font-size: 1rem;
}

/* ======================================
   MENSAGENS INFORMATIVAS REDESENHADAS
====================================== */
.admin-master-message,
.multi-empresa-message {
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  display: none;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 0;
  animation: fadeIn 0.5s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.admin-master-message::before,
.multi-empresa-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: currentColor;
  opacity: 0.7;
}

.admin-master-message {
  background-color: #EFF6FF;
  color: #1E40AF;
}

.multi-empresa-message {
  background-color: #ECFDF5;
  color: #047857;
}

.admin-master-message i,
.multi-empresa-message i {
  margin-right: 0.75rem;
  font-size: 1rem;
}

/* ======================================
   ANIMAÇÕES APRIMORADAS
====================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes highlight-selection {
  0% {
    background-color: transparent;
  }

  40% {
    background-color: rgba(37, 99, 235, 0.1);
  }

  100% {
    background-color: transparent;
  }
}

.auto-selected {
  animation: highlight-selection 2.5s ease;
}

.auth-header {
  animation: fadeIn 0.7s ease-out forwards;
}

.auth-form {
  animation: fadeIn 0.7s ease-out 0.1s forwards;
  opacity: 0;
}

.auth-footer {
  animation: fadeIn 0.7s ease-out 0.2s forwards;
  opacity: 0;
}

.form-group:nth-child(1) {
  animation: slideInRight 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

.form-group:nth-child(2) {
  animation: slideInRight 0.6s ease-out 0.4s forwards;
  opacity: 0;
}

.form-group:nth-child(3) {
  animation: slideInRight 0.6s ease-out 0.5s forwards;
  opacity: 0;
}

/* ======================================
   MEDIDOR DE FORÇA DE SENHA REDESENHADO
====================================== */
.password-strength {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.strength-meter {
  height: 6px;
  background-color: var(--gray-200);
  border-radius: var(--border-radius-full);
  position: relative;
  overflow: hidden;
  margin-bottom: 0.625rem;
}

.strength-meter-fill {
  height: 100%;
  border-radius: var(--border-radius-full);
  transition: width 0.3s ease, background-color 0.3s ease;
  width: 0;
}

.strength-text {
  font-size: 0.8125rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.strength-text i {
  font-size: 0.875rem;
}

/* Cores para diferentes níveis de força */
.strength-weak {
  background-color: var(--danger);
  width: 25%;
}

.strength-medium {
  background-color: var(--warning);
  width: 50%;
}

.strength-good {
  background-color: var(--success);
  width: 75%;
}

.strength-strong {
  background-color: var(--success);
  width: 100%;
}

/* ======================================
   RESPONSIVIDADE APRIMORADA
====================================== */
@media (max-height: 700px) {
  .auth-logo-wrapper {
    margin-top: -55px;
  }

  .auth-logo-container {
    width: 110px;
    height: 110px;
  }

  .auth-logo {
    width: 75px;
  }

  .auth-content {
    padding: 1.25rem 2rem 2rem;
  }

  .auth-title {
    font-size: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .input-group input,
  .input-group select {
    padding: 0.875rem 1.125rem 0.875rem 2.75rem;
  }

  .input-group input:focus,
  .input-group select:focus,
  .input-group input.has-value:focus,
  .input-group select.has-value:focus,
  .filtered-select:focus {
    padding: calc(0.875rem - 1px) calc(1.125rem - 1px) calc(0.875rem - 1px) calc(2.75rem - 1px);
  }

  .auth-btn {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .auth-container {
    padding: 1rem;
    /* Reduz o padding em telas menores */
  }

  .auth-logo-wrapper {
    margin-top: -50px;
  }

  .auth-logo-container {
    width: 100px;
    height: 100px;
    box-shadow:
      0 8px 12px -3px rgba(37, 99, 235, 0.15),
      0 4px 6px -2px rgba(0, 0, 0, 0.05),
      0 0 0 5px rgba(255, 255, 255, 0.9);
  }

  .auth-logo {
    width: 65px;
  }

  .auth-content {
    padding: 1.25rem 1.75rem 1.75rem;
  }

  .auth-title {
    font-size: 1.5rem;
  }

  .auth-subtitle {
    font-size: 0.9375rem;
    max-width: 95%;
  }

  .form-group label {
    font-size: 0.875rem;
  }

  .input-group input,
  .input-group select {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
  }

  .input-group input:focus,
  .input-group select:focus,
  .input-group input.has-value:focus,
  .input-group select.has-value:focus,
  .filtered-select:focus {
    padding: calc(0.875rem - 1px) calc(1rem - 1px) calc(0.875rem - 1px) calc(2.75rem - 1px);
  }

  .input-icon {
    left: 1rem;
    font-size: 1rem;
  }

  .auth-btn {
    font-size: 1rem;
    padding: 0.875rem;
  }

  .admin-master-message,
  .multi-empresa-message {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .forgot-password-link {
    font-size: 0.875rem;
  }

  .auth-footer {
    margin-top: 2rem;
  }
}

/* Ajustes adicionais para telas muito pequenas */
@media (max-width: 360px) {
  .auth-container {
    padding: 0.75rem;
  }

  .auth-logo-wrapper {
    margin-top: -45px;
  }

  .auth-logo-container {
    width: 90px;
    height: 90px;
  }

  .auth-logo {
    width: 60px;
  }

  .auth-content {
    padding: 1rem 1.25rem 1.5rem;
  }

  .auth-title {
    font-size: 1.25rem;
  }

  .auth-subtitle {
    font-size: 0.875rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .auth-btn {
    padding: 0.75rem;
    font-size: 0.9375rem;
  }
}

/* Ajustes para telas muito altas (para centralizar melhor) */
@media (min-height: 900px) {
  .auth-container {
    align-items: center;
    justify-content: center;
  }
}

/* Ajustes para quando o teclado virtual está ativo em dispositivos móveis */
@media (max-height: 500px) {
  .auth-container {
    align-items: flex-start;
    padding-top: 1rem;
  }

  .auth-logo-wrapper {
    margin-top: -40px;
  }

  .auth-logo-container {
    width: 80px;
    height: 80px;
  }

  .auth-logo {
    width: 55px;
  }
}