/* Estilos para el botón de contacto flotante */
#ois-contacto {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #1a73e8;
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: flotar 3s ease-in-out infinite;
    max-width: 280px;
    font-family: Arial, sans-serif;
    text-align: center;
}

#ois-cerrar {
    position: absolute;
    top: 6px;
    right: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

#ois-cerrar:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

@keyframes flotar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

#ois-contacto * {
    margin: 0;
    padding: 0;
}

@media (max-width: 600px) {
    #ois-contacto {
        font-size: 13px;
        padding: 10px 14px;
        bottom: 15px;
        left: 10px;
        max-width: 90%;
    }
    #ois-cerrar {
        width: 20px;
        height: 20px;
    }
}

/* Estilos para el formato del login */
.panel-login {
    display: flex;
}

.left-pad {
    width: 60%;
    padding: 20px;
}

.right-pad {
    padding: 70px;
    padding-top: 80px;
}

.imagen-movil {
    display: block; /* Asegura que la imagen se muestre en escritorio */
}

.btn-blue {
    color: #fff;
    background-color: #032d7f;
    border-color: #032d7f;
}

.flotante {
    display: block;
    position: fixed;
    bottom: 70%;
    right: 77%;
}

.flotante-2 {
    display: block;
    position: fixed;
    bottom: 58%;
    right: 77%;
}

.logo-top {
    display: none; /* Oculta el logo en móviles */
}

.logo-desktop {
    display: block; /* Oculta el logo de escritorio en móviles */
}

.logo-mobile {
    display: none; /* Muestra el logo móvil */
}

.detail-mobile {
    display: none; /* Muestra el detalle móvil */
}

.custom-button-login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.custom-button-login:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.button-login-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.icon-text {
    display: flex;
    align-items: center;
    flex: 1;
}

.icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #032d7f;
}

.text {
    font-size: 16px;
    color: #6c757d;
}

.arrow {
    font-size: 20px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .imagen-movil {
        display: none; /* Oculta la imagen en móviles */
    }

    .flotante {
        display: none; /* Oculta el botón flotante en móviles */
    }

    .flotante-2 {
        display: none; /* Oculta el botón flotante en móviles */
    }

    .logo-bajo {
        display: none; /* Oculta el logo en móviles */
    }

    .logo-top {
        display: block; /* Oculta el logo en móviles */
    }

    .logo-desktop {
        display: none; /* Oculta el logo de escritorio en móviles */
    }

    .logo-mobile {
        display: block; /* Muestra el logo móvil */
    }

    .detail-mobile {
        display: block; /* Muestra el detalle móvil */
        text-align: center;
    }
}