input:autofill {
  transition:
    background-color calc(infinity * 1s) step-end,
    background-image calc(infinity * 1s) step-end allow-discrete,
    color calc(infinity * 1s) step-end;


  /* color del texto */
  color: #f1f1f1;

  /* Firefox: evita el amarilleo/tinte del navegador */
  filter: none !important;
}

[data-theme=dark] input:autofill {
    box-shadow: 0 0 0 1000px #1b232d inset !important;
    
}


/* Mostrar logo según tema */
html[data-theme="dark"] #logo-light { display: none; }
html:not([data-theme="dark"]) #logo-dark { display: none; }

@media (max-width: 767.98px) {
  .login-page .main-content {
    min-height: 0 !important;
  }

  .login-page .main-content .card{
    background: transparent !important;
    border: 0 !important;
  }
  body.login-page{
    background-color: var(--bs-gray-100) !important;
  }
  
  body.login-page[data-theme=dark]{
    background-color: #131920 !important;
  }
  #login_create_account_bar{
    background-color: #F8F9FA !important;
    font-size: 14px;
  }


}