body,
html {
     font-family: 'Arial', sans-serif;
    height: 100%;
    margin: 0;
}
.fondo {
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.5);
}

.fondologin {
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #FFFFFF;
    padding-top: 5rem;
}

.footer {
    /* position: fixed;*/
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #2772A7;
    padding: 10px;
    font-family: 'Manrope', sans-serif;
    color: #ffffff;
}

.h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

.texto-pie {
    display: block;
    color: #ffffff;
    font-size: 0.9em;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}



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

.w-60 {
    width: 60% !important;
}

.split-screen {
    display: flex;
    height: 100vh;
}

.left-side {
    width: 50%;
    background: #f8f9fa;
    display: flex;
    /*align-items: anchor-center;*/
    padding-top: 8em;
    justify-content: center;
}

.right-side {
    width: 50%;
    background: #343a40;
}

.carousel-inner img {
    height: 100vh;
    object-fit: cover;
}

.split-screen {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
}

.left-side,
.right-side {
    flex: 1 1 50%;
    min-height: 50vh;
}

@media (max-width: 768px) {

    .left-side,
    .right-side {
        flex: 1 1 100%;
    }

    .carousel-inner img {
        height: 250px;
        object-fit: cover;
    }
}

.carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-wrapper {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.position-absolute a {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.input-group-text:hover {
    background-color: #e9ecef;
}
.eye-toggle:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 4px #2772A7;
    background-color: #dee2e6;
    transition: box-shadow 0.2s ease-in-out;
}
.footer-fijo {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .footer-fijo {
        position: static;
        box-shadow: none;
    }
}