/* Estilos personalizados */
/* Fuente Playwrite AU SA */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playwrite+AU+SA:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  background-color: #fffefb;
  font-family: Arial, sans-serif;
}

body, .hero {
  overflow-x: hidden; /* Evita que aparezca la barra horizontal */
}

body, html {
  margin: 0;
  padding: 0;
}

.hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Envía la imagen detrás del texto */
}




.hero-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* Asegura que la imagen cubra toda el área */
}
/* Estilo para el título */
.title {
font-family: "Playwrite AU SA", serif;
  margin-top: 20px;  /* Añadir separación entre el logo y el texto */
  font-size: 2.5rem;
  color: rgb(72, 72, 72);
}

.title-dos{
    font-family: "Playwrite AU SA", serif;
  font-size: 1.5rem;
  color: rgb(72, 72, 72);
}
.login-container {
    height: 100vh; /* Altura completa */
  }
  
  .logo-large {
    max-width: 40%; /* Ajusta el tamaño máximo del logo grande */
    height: auto; /* Mantén la proporción */
  }
  
  .logo-small {
    max-width: 20%; /* Ajusta el tamaño máximo del logo pequeño */
    height: auto; /* Mantén la proporción */
  }
  

  .poppins-titulo {
    font-family: "Poppins", sans-serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
}

.poppins-black {
  font-family: "Poppins", serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
}


.poppins-normal {
    font-family: "Poppins", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.poppins-italic {
    font-family: "Poppins", sans-serif !important;
    font-weight: 200 !important;
    font-style: italic !important;
}


.titulo-login {
  font-size: 2rem;
  text-align: center;
}


.custom-input {
  background-color: rgb(215, 215, 215) !important; /* Fondo rojo para el input */
  border: none !important; /* Quitar el borde del input */
  color: rgb(9, 9, 9) !important; /* Texto blanco dentro del input */
 
  border-radius: 0 25px 25px 0;
}

.input-group-text.grupo-usuario {
  background-color: rgb(215, 215, 215) !important; /* Fondo rojo para el ícono */
  border: none !important; /* Quitar el borde del ícono */
  color: white !important; /* Icono en blanco */
  border-radius: 25px 0 0 25px;
}

.form-control:focus {
  box-shadow: none !important; /* Eliminar el borde azul de foco en el input */
  outline: none !important;
}
#usuario {
  border-radius: 0 25px 25px 0;
}

#password {
  border-radius: 0 25px 25px 0;
}

form {
  box-shadow: 0 0 40px rgba(0, 0, 20, 0.4); /* Sombra sutil alrededor */
  border-radius: 8px; /* Redondear las esquinas */
  padding: 50px; /* Espaciado interno */
}


/* Ajuste para pantallas pequeñas */
@media (max-width: 990px) {

  body {
    background-color: #f0ad4e; /* Cambia el fondo */
    font-family: Arial, sans-serif;
  }
  
  body, .hero {
    overflow-x: hidden; /* Evita que aparezca la barra horizontal */
  }
  
  body, html {
    margin: 0;
    padding: 0;
  }

  
  
  .titulo-login {
    font-size: 1.2rem; /* Tamaño más pequeño para celulares */
  }

  form {
    box-shadow:none; /* Sombra sutil alrededor */
    background-color: #f0ad4e;
    box-shadow: 0 0 40px rgba(0, 0, 20, 0.4); /* Sombra sutil alrededor */
  
  }
    
  .loguito{
    font-size: 1.4rem;
    color: rgb(27, 27, 27);
  }
  .hero-img {
    display: none; /* Oculta la imagen en pantallas pequeñas */
  }

 .login-container{
  background-color: #f0ad4e;
 }

}
