/* ================================================================
   CONTENEDOR GENERAL
================================================================ */
.login-container {
    background-color: #f4f7fb;
    font-family: "Roboto", Arial, sans-serif;
}

/* ================================================================
   PANEL IZQUIERDO (LOGIN)
================================================================ */
.panel-login {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
    padding-bottom: 40px;
}

.logo-cliente {
    max-width: 260px;
    height: auto;
}

.panel-login .form-control {
    border-radius: 10px;
    padding: 12px;
}

.panel-login .btn-primary {
    background: linear-gradient(90deg, #005eff, #008aff);
    border: none;
    font-weight: 600;
    border-radius: 10px;
}
.panel-login .btn-primary:hover {
    background: linear-gradient(90deg, #006bff, #009cff);
}

/* ================================================================
   BLOQUE DE CONTACTO (WHATSAPP / WEB / POWERED)
================================================================ */
.info-contacto {
    font-size: 0.9rem;
    color: #666;
    margin-top: 25px;
    text-align: center;
}

.contact-item {
    display: block;
    margin-bottom: 6px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.contact-item:hover {
    text-decoration: underline;
}

.contact-item i {
    color: #25d366;
    margin-right: 6px;
}

.powered {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #444;
    opacity: 0.9;
}

/* ================================================================
   PANEL DERECHO – FONDO FARMACÉUTICO
================================================================ */
.panel-farmacia {
    background-image: url('../img/fondo_farmaceutico.jpg');
    background-size: cover;
    background-position: center;
    animation: zoom 20s ease-in-out infinite alternate;
    height: 100vh;
    overflow: hidden !important;
}

@keyframes zoom {
    0%   { background-size: 100%; }
    100% { background-size: 115%; }
}

/* ================================================================
   CAJA DEL CARRUSEL (DESKTOP)
================================================================ */
.caja-carrusel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 620px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 20px;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    text-align: center;
}

/* ================================================================
   BANNER DEL CARRUSEL (DESKTOP)
================================================================ */
.banner-box {
    width: 100%;
    height: 280px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
    padding: 10px;
}

.banner-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ================================================================
   SLOGAN BAJO EL BANNER
================================================================ */
.slogan-proveedor {
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    color: #005eff;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 18px;
    display: inline-block;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

/* ================================================================
   VERSIÓN MÓVIL – PUBLICIDAD REDUCIDA
================================================================ */
@media (max-width: 768px) {

    /* Ocultar panel derecho desktop */
    .panel-farmacia,
    .caja-carrusel {
        display: none !important;
    }

    /* Login estilo app */
    .panel-login {
        height: auto;
        padding-top: 30px;
        padding-bottom: 10px;
        box-shadow: none;
    }

    .panel-login .w-100 {
        margin-top: -40px;
    }

    .panel-login .form-control {
        padding: 15px;
        font-size: 17px;
    }

    .panel-login .btn-primary {
        padding: 14px;
        font-size: 18px;
        border-radius: 12px;
    }

    .logo-cliente {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .text-muted {
        font-size: 15px;
    }

    .info-contacto {
        margin-top: 25px;
        font-size: 15px;
    }

    .contact-item {
        font-size: 16px;
        padding: 5px 0;
    }

    .powered {
        font-size: 14px;
        margin-top: 12px;
    }

    /* :::::::::::::: CARRUSEL MÓVIL REDUCIDO :::::::::::::: */
    .caja-carrusel-movil {
        display: block !important;
        margin: 25px auto 10px;
        width: 92%;
        text-align: center;
    }

    .banner-box {
        height: 150px;
        padding: 6px;
        border-radius: 12px;
    }

    .banner-box img {
        max-height: 100%;
        object-fit: contain;
    }

    .slogan-proveedor {
        margin-top: 10px;
        font-size: 0.85rem;
        padding: 6px 14px;
        border-radius: 40px;
    }

    body, html {
        height: 100%;
        overflow-x: hidden;
        background-color: #ffffff;
    }
}
/* Forzar que el panel izquierdo permita mostrar el bloque de contacto */
@media (min-width: 769px) {
    .panel-login {
        min-height: 100vh !important;   /* Hace que todo sea visible en pantalla */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .panel-login form {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .info-contacto {
        margin-top: auto;        /* Siempre se verá abajo del login */
        padding-bottom: 20px;
    }
}
/* Forzar que el panel izquierdo permita mostrar el bloque de contacto */
@media (min-width: 769px) {
    .panel-login {
        min-height: 100vh !important;   /* Hace que todo sea visible en pantalla */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .panel-login form {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .info-contacto {
        margin-top: auto;        /* Siempre se verá abajo del login */
        padding-bottom: 20px;
    }
}
