@charset "UTF-8";
/*
Theme Name: Pinnacle Estate Theme
Theme URI: #
Author: Diego Castro
Author URI: https://github.com/diegowdeveloper
Description: Pinnacle Estate Properties, Inc.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pinnacleestate
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  margin: 0 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  /*
   * El truco es usar un box-shadow que cubra el fondo del input.
   * El color del box-shadow debe coincidir con el color de fondo natural de tu input
   * cuando NO está autocompletado, y la opacidad debe ser muy baja o transparente.
   */
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0) inset; /* O el color de tu fondo actual */
  /*
   * Opcionalmente, puedes establecer un color de fondo con opacidad.
   * Esto puede funcionar en algunos casos, pero box-shadow es más fiable.
   */
  /* background-color: rgba(255, 255, 255, 0) !important; */
  /* Para que el texto mantenga el color que deseas */
  -webkit-text-fill-color: inherit; /* O el color específico de tu texto, ej. #333 */
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s; /* Esto evita la transición del color */
}