.qrcode-redirect-form-wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.qrcode-redirect-form-wrapper p.low-margin {
    margin-bottom: 10px;
}

.qrcode-redirect-form-wrapper div > ul.low-margin {
    margin-bottom: 10px;
}

.qrcode-redirect-form h1,
.qrcode-redirect-form h2 {
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #0073aa;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.btn-submit:hover {
    background-color: #005177;
}

div#qr-code-display {
    text-align: center;
    margin: 20px;
}

img#qrcode-image {
    display: inline;
}

.loader {
    z-index: 9999;
    content: "";
    position: relative;
    width: 90px;
    height: 90px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 5px solid var(--global-palette2);
    border-top-color: #fff;
    border-left-color: var(--global-palette2);
    border-bottom-color: var(--global-palette2); /* Ensure this is here if you want three sides colored */
    border-right-color: transparent; /* Correctly specify the transparent border */
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
    background: rgba(255,255,255,0.80);
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}
