/* Custom styles for the lead capture modal */
.lead-modal-body {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
    /* Decorative background image in bottom-right */
    background-image: url('../img/Satellite.svg');
    background-repeat: no-repeat;
    background-position: right 0 bottom 0; /* exact bottom-right corner */
    background-origin: padding-box; /* respect modal body padding */
    background-size: 620px auto; /* adjust size as needed */
}

/* Make the modal extra wide */
.modal-dialog.modal-lg {
    max-width: 900px !important;
}

/* Make sure the modal is wider on mobile */
@media (max-width: 768px) {
    .modal-dialog.modal-lg {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}
