  /* Estilos Gerais */
  body,
  html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  }

  .full-height {
    height: 91.7vh;
    /* Usa 100% da altura da tela */
  }

  /* Coluna da Esquerda (Azul) */
  .left-column {
    background-color: #093E63;
    /* Cor de fundo do design */
    color: white;
    padding: 4rem;
    /* Espaçamento interno generoso */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Alinha o conteúdo principal no topo e o rodapé na base */
    padding-left: 160px;
  }

  .left-column .logo {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .left-column h1 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #F3A414;
    /* Fonte mais fina */
  }

  .left-column h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #F3A414;
  }

  .feature-list {
    list-style: none;
    padding-left: 0;
  }

  .feature-list li {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
  }

  .feature-list li::before {
    content: '→';
    /* Seta */
    margin-right: 1rem;
    font-weight: bold;
  }

  .footer-text {
    font-size: 1rem;
    font-weight: 300;
    margin-top: 2rem;
  }

  /* Coluna da Direita (Branca - Formulário) */
  .right-column {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login-form-container {
    width: 100%;
    max-width: 450px;
    /* Limita a largura do formulário */
    padding: 2rem;
    margin-top: -20px;
  }

  .login-title {
    color: rgba(0, 0, 0, 0.65);
    font-family: "Poetsen One", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
  }

  .login-subtitle {
    font-family: "Public Sans";
    font-size: 1rem;
    color: #6c757d;
    /* Cinza padrão do Bootstrap */
    text-align: center;
    margin-bottom: 2.5rem;
  }

  /* Estilos para os campos do formulário */
  .form-group.input-copi {
    position: relative;
    margin-bottom: 2rem;
  }

  .form-group.input-copi label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.5rem;
  }

  .form-group.input-copi .form-control {
    height: 50px;
    border-radius: 8px;
    padding-right: 40px;
    /* Espaço para o ícone */
  }

  .form-group.input-copi .input-icon {
    position: absolute;
    right: 15px;
    top: 45px;
    /* Ajuste para alinhar verticalmente com o input */
    color: #888;
    cursor: pointer;
  }

  /* Botão de Entrar */
  .btn-copi-submit {
    background-color: #E49D19;
    font-family: "Roboto", sans-serif;
    border-color: #E49D19;
    color: white;
    font-weight: bold;
    padding: 12px 0;
    /* Padding vertical */
    width: 100%;
    border-radius: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s;
  }

  .btn-copi-submit:hover {
    background-color: #d49330;
    /* Um tom mais escuro para o hover */
    border-color: #d49330;
    color: white;
  }

  /* Link "Esqueceu a senha" */
  .forgot-password a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }

  .forgot-password a:hover {
    text-decoration: underline;
  }

.input-copi {
  border-bottom: 1px solid rgba(0, 0, 0, 0.44);
}

.input-copi input {
  border: none;
}

.links-painel a {
    color: silver!important;
    font-size: large;
}


@media (max-width: 767.98px) {
 .ajust-row-mob {
    margin: 0 auto!important;
 }
 .full-height {
    height: 77.7vh;
}
}