@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.kt-login_title.h2 {
  font-family: 'Poppins', sans-serif; 
  font-size: 1.5rem;
  color: var(--text-color1) !important; /* Color del título */
  font-weight: 800;
  margin-bottom: 5px;
}

.kt_carousel {
  display: flex;
  justify-content: center;  
  align-items: center;     
  height: 100vh;           
} 

.owl-item {
  display: flex;
  justify-content: center;  
  align-items: center;       
  text-align: center;       
  padding: 20px;           
}

.item img {
  max-width: 100%;          
  height: auto;            
}


.owl-dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
.owl-dot {
    position: relative !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  /* Estilos personalizados */
  .owl-dots .owl-dot {
    width: 24px !important;  
    height: 10px !important;  
    background-color: #6E7C92 !important;  /* Color del punto */
    margin: 0 5px !important; /* Espaciado entre puntos */
    border-radius: 50px !important; /* Hace que sea alargado */
    transition: background-color 0.3s ease !important;
  }
  
  /* Punto activo */
  .owl-dots .owl-dot.active {
    background-color: var(--dots-color) !important; /* Color del punto activo */
  }
  
  /* Hover */
  .owl-dots .owl-dot:hover {
    background-color: var(--dots-color) !important; /* Color al pasar el ratón */
  }

  .owl-theme .owl-dots .owl-dot span {
    display: none;
}


  
.btn-primary {
    width: 100%;
    min-height: 1rem;
    border-radius: 10rem; 
    padding: 0.8rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    background-color: var(--btn-color1-bg) !important; /* Color de fondo del botón */
    border: none;
    text-transform: capitalize;
    transition: all ease-in-out 0.3s; 
    color: #ffffff !important; /* Color del texto */
    cursor: pointer; 
  }
  
  
  .btn-primary:hover {
    background-color: var(--btn-color1-hover-bg) !important; /* Cambia el color al pasar el mouse */
    transform: scale(1.02); 
  }
  
  
  .kt-form .form-control {
    width: 100%; 
    border-radius: 10rem; 
    border: 1px solid #00000029 !important; 
    padding: 1rem 1.5rem; 
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color ease-in-out 0.3s; 
    margin-bottom: 1rem; /* Espacio entre campos */
  }
  
  
  .kt-form .form-control:hover,
  .kt-form .form-control:focus {
    border-color: #0D1C33 !important; /* Cambia el color del borde al pasar el mause */
    outline: none; 
  }
  
  
  .kt-login__actions {
    width: 100%; 
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    gap: 0.5rem; /* Espacio entre el botón y el enlace */
  }
  
  
  .kt-login__actions a {
    align-self: flex-end;
    color: var(--text-color1); /* Color del enlace  */
    text-decoration: none; 
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: color ease-in-out 0.3s; 
  }
  
  .kt-login__actions a:hover {
    color: #0D1C33; /* Cambia el color al pasar el mouse */
  }


.kt-login.kt-login--v1 .kt-login__aside {
    width: 89vh;
    padding: 3rem 3.5rem;
    background-repeat: no-repeat;
    background-size: cover;
}





@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Poppins';
    font-weight: 600;
    font-style: normal;
  } 
  