/* ======================================================== */
/* CSS FINAL: DOIS CARDS LADO A LADO E CENTRALIZADOS        */
/* ======================================================== */

/* --- CONFIGURAÇÕES GERAIS E CENTRALIZAÇÃO --- */

body.pagelayout-login {
    overflow: hidden;
}

#page.container-fluid {
    display: flex;
    align-items: center;    /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    min-height: 100vh;      /* Altura mínima de 100% da tela */
    padding: 2rem;
    background-color: #f4f8f9;
    box-sizing: border-box
}

/* Container que segura as duas colunas */
.login-split-container {
  display: flex;
  flex-wrap: wrap; /* Permite que as colunas quebrem em telas menores */
  justify-content: center;
  align-items: stretch; /* Faz as colunas terem a mesma altura */
  gap: 2rem;
  width: 100%;
}

/* --- COLUNA ESQUERDA: FORMULÁRIO DE LOGIN --- */

.login-form-column {
  flex: 1;
  min-width: 320px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #0DA6A6;
  padding: 2.5rem;
  text-align: center;
}

.login-form-column .login-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0DA6A6;
    margin-bottom: 0.5rem;
}

.login-form-column .login-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.login-form-column .card {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.login-form-column .card-header {
  display: none;
}
.login-form-column .card-body {
    padding: 0;
    text-align: left;
}

.login-form-column .form-control {
    border-radius: 8px;
    padding: 12px;
    background-color: #f4f8f9;
    border: 1px solid #e0e0e0;
}

.login-form-column .form-control:focus {
    border-color: #0DA6A6;
    background-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(13, 166, 166, 0.25);
}

.login-form-column .btn-primary {
  background-color: #0DA6A6;
  border-color: #0DA6A6;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  padding: 12px;
  transition: all 0.3s ease;
}

.login-form-column .btn-primary:hover {
  background-color: #0a8a8a;
  border-color: #0a8a8a;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(13, 166, 166, 0.3);
}

.login-form-column a {
    color: #0DA6A6;
    transition: color 0.2s;
}
.login-form-column a:hover {
    color: #FF0031;
}

/* --- COLUNA DIREITA: INFORMAÇÕES ADICIONAIS --- */

.login-info-column {
  flex: 1;
  min-width: 320px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #0DA6A6;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.login-info-column .info-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0DA6A6;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.login-info-column .info-subtitle {
  color: #555;
  margin-bottom: 2rem;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.info-links .info-link-item {
  display: block;
  padding: 14px;
  background-color: #f4f8f9;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  color: #0DA6A6;
  transition: all 0.3s ease;
}

.info-links .info-link-item:hover {
  background-color: #fdf2f4;
  color: #FF0031;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 0, 49, 0.1);
}

/* --- BOTÕES ADICIONAIS --- */

.login-signup {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.login-signup .btn.btn-secondary {
    width: 100%;
    background-color: transparent;
    border: 2px solid #0DA6A6;
    color: #0DA6A6;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.login-signup .btn.btn-secondary:hover {
    background-color: transparent;
    border-color: #FF0031;
    color: #FF0031;
    transform: translateY(-2px);
}
/*

.pagelayout-login #page-footer {
    display: none !important;
}

/* --- ELEMENTOS OCULTOS E RESPONSIVIDADE --- */

.login-heading, #loginguestbtn, button[data-modal-title-str*="cookiesenabled"] {
    display: none !important;
}

/* Regra para telas menores */
@media (max-width: 768px) {
  /* Em telas de celular, os cards ficam um em cima do outro */
  .login-split-container {
    flex-direction: column;
    align-items: center;
  }
}