/* =======================================
   Contenedor principal
======================================= */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

#container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* LOGIN */

.panel.box-login {
    background: rgba(255,255,255,0.8);
    top: 52px;
    left: 61px;
    width: 444px;
    height: 461px;
    border-radius: 10px 10px 10px 10px;
    opacity: 0.95;
    backdrop-filter: blur(undefined);
    -webkit-backdrop-filter: blur(undefined);
    transform: scale(0.85);
    float: right; 
}
p.logo-login img {
    margin-top: 20px;
    margin-bottom: 10px;
}
.pad-all.border-bottom.divider {
    color: #666666;
    font-weight: bold;
    font-size: 14px;
    border-top: 2px solid #b9c4dd;
    width: 75%;
    margin: 0 auto;
    padding: 33px 0 0 0;
}
.custom-input-container {
    width: 75%;
    height: 33px;
    border: 2px solid #DBD7EC;
    margin: 0 auto;
    border-radius: 4px;
    background-color: #fff;
}
.icon-container {
    line-height: 35px;
    width: 35.5px;
    height: 29px;
    background: #5a78b1;
    float: left;
    border-radius: 4px;
}
.icon-container img {
    width: 15px;
    margin-top: 6px;
}
.custom-input {
    background: transparent;
    width: 78%;
    height: 33px;
    border: none;
    margin-left: 10px;
}
*:focus {
    outline: none;
}
.btn-ingresar {
    background: #5674AF;
    color: #fff;
    padding: 9px;
    text-transform: uppercase;
    width: 75%;
    margin: 40px auto;
    top: 379px;
    left: 127px;
    height: 45px;
    border-radius: 6px;
}
.btn-ingresar:hover, .btn-ingresar:focus {
    color: #fff;
    background: #5674AF;
}
.border-bottom {
    border-radius: 0 0 5px 5px !important;
}
.instruction {
    color: #666666;
    font-weight: bold;
    font-size: 14px;
    border-top: 2px solid #b9c4dd;
    width: 75%;
    margin: 0 auto;
    padding: 31px 0 0 0;
}
.text-form {
    margin: 0px;
    font-size: 13px;
}

/* =======================================
   Fondo
======================================= */
.bg-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/* =======================================
   Footer
======================================= */
footer {
    background-color: #00263D;
    color: #fff;
    width: 100%;
    padding: 15px 10px;
    box-sizing: border-box;
    flex-shrink: 0; /* para que no se comprima */
}

footer .row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

footer .col-left, footer .col-right {
    padding: 10px;
}

footer .col-left img {
    max-width: 200px;
}


footer #div_copyright {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
}

/* Footer responsive */
@media (max-width: 768px) {
    footer .row {
        flex-direction: column;
        align-items: center;
    }

    footer .col-left, footer .col-right {
        text-align: center;
        padding: 5px 0;
    }

    footer .col-left img {
        max-width: 150px;
    }
}

/* =======================================
   Botón scroll-top
======================================= */
.scroll-top.in {
    bottom: 5px;
    right: 15px;
    position: fixed;
    background-color: #00263D;
    border: 3px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

/* =======================================
   Burbuja de soporte/contacto
======================================= */
.bubble_contacto {
    width: 50px;
    height: 50px;
    background-color: #e9f5ff;
    border-radius: 50%;
    position: fixed;
    bottom: 100px;
    right: 15px;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bubble_contacto:hover {
    background-color: #cce4f7;
}
