/* Estilos personalizados */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding-top: 70px; /* Ajuste para el navbar fijo */
}

/* --*****HEADER*****-- */
header {
    font-size: 0.9rem;
    color: #333;
    background-color: #f8f9fa;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1050;
}
#main-header {
    transition: transform 0.3s ease-in-out;
}


.separator {
    border-left: 1px solid #ccc;
    height: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

/* Enlaces de correo y teléfono */
a {
    color: black;
    text-decoration: none;
}

/* Submenú de idioma */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 120px; /* Asegura un tamaño adecuado */
}

/* Quitar viñetas del submenú */
.submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Estilos para los ítems del submenú */
.submenu ul li {
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

/* Efecto al pasar el mouse */
.submenu ul li:hover {
    background-color: #f0f0f0;
    border-radius: 3px;
}


/* --*****HEADER RESPONSIVE*****-- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .d-flex {
        flex-direction: column;
        gap: 5px;
    }

    .separator {
        display: none; /* Ocultar separadores en pantallas pequeñas */
    }

    /* Ajustar el tamaño del icono de usuario y botón de idioma */
    #language-btn,
    .fa-user {
        font-size: 1rem;
        margin-top: 5px;
    }

    /* Submenú de idioma en pantallas pequeñas */
    .submenu {
        width: 100%;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    /* Ajustar espaciado y alineación */
    .d-flex {
        flex-direction: column;
    }

    .ms-3 {
        margin-left: 0 !important;
    }

    .submenu {
        min-width: 100px;
    }
}
/* --*****END HEADER RESPONSIVE*****-- */

/* Estilos para el selector de idioma en responsive */
.language-selector {
    margin-top: 10px;
    text-align: center;
    width: 100%;
}

/* Asegurar que el selector de idioma solo se muestre en responsive */
@media (min-width: 992px) {
    .language-selector {
        display: none; /* Ocultarlo en pantallas grandes */
    }
}

@media (max-width: 991px) {
    .navbar-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .language-selector {
        display: block;
    }
}


/* --*****NAVBAR*****-- */
.navbar {
    position: fixed;
    width: 100%;
    top: 40px; /* Para que esté debajo del header inicialmente */
    transition: top 0.3s ease-in-out;
    background: linear-gradient(135deg, #ffffff, #e3e3e3);
    padding: 5px 0;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.0rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}
.navbar-brand img.logo-brand {
    height: 80px; /* Aumenta el tamaño del logo */
    margin-right: 10px;
}
.navbar-brand:hover {
    color: #007BFF;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #007BFF;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}
.navbar-nav .nav-link:hover {
    color: #007BFF;
}

.btn-rounded {
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}
.btn-rounded:hover {
    background-color: #0056b3;
    color: #ffffff;
}
@media (max-width: 768px) {
    #main-header {
        display: none; /* Ocultar el header en responsive */
    }

    .navbar {
        top: 0 !important; /* Subir el navbar hasta arriba */
    }
}


/* --*****END NAVBAR*****-- */


/* --*****Hero Section*****-- */
.hero {
    background: url('../img/banner1.jpg') no-repeat center center/cover;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mantiene la imagen fija sin efectos */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Capa de oscurecimiento */
}

.hero .container {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards 0.5s;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards 0.8s;
}

/* Ajuste del tamaño del h1 para pantallas más pequeñas */
@media (max-width: 992px) { /* Tablets y laptops pequeñas */
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) { /* Tablets y móviles en horizontal */
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) { /* Móviles */
    .hero h1 {
        font-size: 2rem;
    }
}


.hero p {
    font-size: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards 1s;
}

.hero a.btn {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards 1.2s;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --*****END Hero Section*****-- */



/* -- *****Section QUIENES SOMOS***** -- */
.quienes-somos-feature-box,
.quienes-somos-card,
.quienes-somos-image-container img {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Cuando el elemento entra en el viewport, se activa la animación */
.quienes-somos-feature-box.show,
.quienes-somos-card.show,
.quienes-somos-image-container img.show {
    opacity: 1;
    transform: translateY(0);
}

/* Opcional: Puedes darle un pequeño retraso a cada uno */
.quienes-somos-feature-box.show {
    transition-delay: 0.2s;
}

.quienes-somos-card.show {
    transition-delay: 0.4s;
}

.quienes-somos-image-container img.show {
    transition-delay: 0.6s;
}



.quienes-somos-icon {
    font-size: 1.8rem;
    color: #007bff;
}
.quienes-somos-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}
.quienes-somos-feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.quienes-somos-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.quienes-somos-card:hover {
    transform: translateY(-5px);
}
.quienes-somos-image-container img {
    width: 100%;
    border-radius: 10px;
}
/* -- *****End Quienes Somos***** -- */




/* --*****por que nosostros*****-- */
.why-choose-us {
    background: linear-gradient(135deg, #ffffff, #e3e3e3);
    text-align: center;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.common-icon {
    font-size: 1.8rem;
    color: #007bff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
}
/* Clase que se añadirá cuando el elemento sea visible */
.feature.show {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

/* --*****end por que nosostros*****-- */



/* --*****Clientes-Comunidad*****-- */
.cliente-comunidad-box,
.cliente-comunidad-text,
.cliente-comunidad-title {
    opacity: 0;
    transform: translateY(30px) scale(0.95); /* Comienza con menos opacidad y ligeramente reducido */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Animación cuando el elemento entra en el viewport */
.cliente-comunidad-box.show,
.cliente-comunidad-text.show,
.cliente-comunidad-title.show {
    opacity: 1;
    transform: translateY(0) scale(1); /* Los elementos se mueven hacia su posición final y se agrandan */
}

/* Efecto de zoom y desvanecimiento */
.cliente-comunidad-box.show {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cliente-comunidad-text.show {
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.cliente-comunidad-title.show {
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Se puede agregar un ligero giro para los íconos */
.cliente-comunidad-box.show i {
    transform: rotate(360deg);
    transition: transform 0.6s ease-out;
}

/* Otros detalles para el hover de las cajas */
.cliente-comunidad-box:hover {
    transform: translateY(-8px) scale(1.05); /* Aumenta ligeramente el tamaño y mueve la caja */
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2); /* Más sombra para dar efecto de profundidad */
}

/* Animación para el texto */
.cliente-comunidad-text.show {
    transform: translateY(0) scale(1); /* El texto se anima con más fluidez */
    opacity: 1;
}

/* Hover en los íconos */
.common-icon {
    font-size: 1.8rem;
    color: #0056b3;
}

.common-icon:hover {
    transform: scale(1.2); /* Agranda el ícono al pasar el cursor */
    color: #0056b3; /* Cambio de color en el hover */
}


.cliente-comunidad-section {
    padding: 50px 0;
}
.cliente-comunidad-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}
.cliente-comunidad-box {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    background: #fff;
}
.cliente-comunidad-box:hover {
    transform: translateY(-5px);
}
.cliente-comunidad-box i {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 15px;
    
}
.cliente-comunidad-text {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 40px;
}
/* --*****End Clientes-Comunidad*****-- */


/* --*****Estilo para la Sección de WhatsApp*****-- */
.contact-whatsapp-section {
    position: relative;
    background: url('../img/call-whats.jpg') no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    background-attachment: fixed; /* Hace que la imagen de fondo no se mueva al hacer scroll */
}

/* Oscurecimiento de la imagen de fondo */
.contact-whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Oscurecer la imagen */
    z-index: 1;
}

.contact-whatsapp-section .container {
    position: relative;
    z-index: 2; /* Asegura que el contenido esté sobre la imagen */
}

/* Animación de aparición de los textos y el botón */
.contact-whatsapp-section .contact-content h2,
.contact-whatsapp-section .contact-content p,
.contact-whatsapp-section .btn-whatsapp {
    opacity: 0; /* Inicialmente ocultos */
    transform: translateY(30px); /* Comienzan desplazados hacia abajo */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animación para desvanecerse y moverse */
}

/* Efectos cuando los elementos aparecen en el viewport */
.contact-whatsapp-section .contact-content h2.show,
.contact-whatsapp-section .contact-content p.show,
.contact-whatsapp-section .btn-whatsapp.show {
    opacity: 1;
    transform: translateY(0); /* Desaparecen y se colocan en su posición */
}

/* Efecto para el botón */
.contact-whatsapp-section .btn-whatsapp {
    display: inline-block;
    background-color: #007bff; /* Azul del botón */
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Efecto de hover para el botón */
}

/* Efecto de hover para el botón */
.contact-whatsapp-section .btn-whatsapp:hover {
    background-color: #0056b3; /* Cambia a un azul más oscuro */
    text-decoration: none;
    transform: scale(1.05); /* Aumenta ligeramente el tamaño */
}

/* Media Queries */
@media (max-width: 768px) {
    .contact-whatsapp-section .contact-content h2 {
        font-size: 2rem;
    }

    .contact-whatsapp-section .contact-content p {
        font-size: 1rem;
    }

    .contact-whatsapp-section .btn-whatsapp {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
/* --***** End Estilo para la Sección de WhatsApp*****-- */




/* --*****Crecimiento a futuro*****-- */
/* --*****Crecimiento a futuro*****-- */
.irv-future-growth-section {
    background: linear-gradient(135deg, #f8f9fa, #e0e0e0);
    padding: 60px 20px;
}

/* Títulos */
.irv-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    opacity: 0; /* Inicialmente oculto */
    transform: translateY(30px); /* Comienza desplazado */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animación */
}

/* Cajas de características */
.irv-future-feature-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; /* Inicialmente oculto */
    transform: translateY(30px); /* Comienza desplazado */
}

/* Efecto hover para las cajas */
.irv-future-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Títulos de las características */
.irv-future-feature-title {
    font-size: 1.7rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 15px;
}

/* Descripciones de las características */
.irv-future-feature-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Descripción adicional */
.irv-future-description {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0; /* Inicialmente oculta */
    transform: translateY(30px); /* Comienza desplazado */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animación */
}

/* Animaciones cuando los elementos son visibles */
.irv-future-growth-section .show {
    opacity: 1;
    transform: translateY(0); /* Los elementos vuelven a su posición */
}

/* --*****End Crecimiento a futuro*****-- */

.irv-future-growth-section {
    background: linear-gradient(135deg, #f8f9fa, #e0e0e0);
    padding: 60px 20px;
}

.irv-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.irv-future-feature-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.irv-future-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.irv-future-feature-title {
    font-size: 1.7rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 15px;
}

.irv-future-feature-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.irv-future-description {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

/* --*****End Crecimiento a futuro*****-- */


/* --*****Estilos específicos para la sección de contacto*****-- */
.contactanos-section {
    margin-top: 50px;
}

.map-container iframe {
    border: 0;
    max-width: 100%;
    height: 400px;
}

/* Contenedor principal */
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    margin-top: -50px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Columna izquierda: Tarjetas de información */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 40%;
}

.info-card {
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card h5 {
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.info-card i {
    color: blue;
    font-size: 20px;
    margin-right: 5px;
}

/* Tarjeta de invitación */
.invitation-card {
    background: #007bff;
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.invitation-card h4 {
    margin-bottom: 10px;
}

.invitation-card button {
    background: white;
    color: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.invitation-card button:hover {
    background: lightgray;
}

/* Columna derecha: Formulario */
.contact-form {
    width: 60%;
}

.form-card {
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.form-card h5 {
    margin-bottom: 20px;
    color: #333;
    font-weight: bold;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn-primarycontact {
    background-color: blue;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
}

.btn-primarycontact:hover {
    background-color: darkblue;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}
/* --*****END Estilos específicos para la sección de contacto*****-- */

/* --*****Footer*****-- */
.footer {
    background: #111;
    color: white;
    padding: 40px 0;
    font-size: 14px;
}

.footer h5 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer p {
    margin: 5px 0;
    line-height: 1.6;
}

.footer i {
    margin-right: 8px;
    color: #007bff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.footer-social a {
    font-size: 18px;
    margin-right: 15px;
    color: white;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }

    .footer-info,
    .footer-links,
    .footer-social {
        margin-bottom: 20px;
    }
}
/* --*****ENDFooter*****-- */



.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Se muestra dinámicamente con JS */
    transition: opacity 0.3s ease-in-out;
}

.scroll-to-top.show {
    display: flex !important;
    opacity: 1;
}





/* Estilo general del modal */
.modal-content {
    border-radius: 12px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mejoras en los inputs y selects */
.modal-body input, 
.modal-body select {
    border-radius: 6px;
    padding: 12px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.modal-body input:focus, 
.modal-body select:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Mejora del botón de enviar */
.modal-footer .btn-primary {
    background-color: #007BFF;
    border: none;
    padding: 10px 20px;
    transition: background 0.3s ease, transform 0.2s;
}

.modal-footer .btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Encabezado estilizado */
.modal-header {
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
}

.modal-header .btn-close {
    opacity: 1;
}

.modal-header.bg-primary {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
}

/* Mejoras generales */
.shadow-lg {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}




/*ES PARA EL LOGIN*/
.login-card {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.login-form-label {
    font-weight: 600;
}
.login-btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}
.login-error-message {
    color: red;
    font-size: 0.875rem;
    margin-top: 10px;
}
/*ES PARA EL LOGIN*/