.bg-image {
    background-image: url('../media/background.png');
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: block !important; /* Aseguramos que la imagen de fondo siempre esté visible en pantallas más grandes */
}

@media (max-width: 767px) {
    body {
        background-image: url('../media/background.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        height: 100%;
    }
    
    .bg-image {
        display: none !important; /* Ocultamos la imagen de fondo en pantallas más pequeñas */
    }
}


@media (max-width: 767px) {
    .form-container {
        background-color: #fff; /* El color de fondo que desees */
        border-radius: 5px; /* Si deseas que las esquinas sean redondeadas */
        padding: 20px; /* Espacio alrededor del formulario */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Una sombra sutil alrededor de la tarjeta */
    }
}


.qr {
    width: 38% !important;
}

@media (max-width: 768px) {
    .qr {
        width: 70% !important;
    }
}

body, html {
    margin: 0;
    padding: 0;
    height: 100% !important;
}