html,
body {
    height: 100dvh;
    margin: 0;
    padding: 0;
    background-color: #1b252b;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

/* .stripe {
    background: repeating-linear-gradient(45deg,
            #f8b916,
            #f8b916 10px,
            black 10px,
            black 20px);
    height: 7px;
    width: 100%;
    flex-shrink: 0;
} */

.color-code {
    background: linear-gradient(270deg, #00579C 0, #80DAFF 26.56%, #FD819F 49.48%, #FECF04 77.08%, #60E2CD 100%);
    height: 7px;
    width: 100%;
    flex-shrink: 0;
}

.header {
    background-color: #ffffff;
    padding: 8px 0;
    flex-shrink: 0;
}

.header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    text-align: center;
}

.header-image-1 {
    height: 60px;
}

.header-image-2 {
    height: 48px;
    margin-top: 5px;
}

.qr-section {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1b252b;
}

.qr-code {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.qr-code img {
    width: 60vw;
    max-width: 300px;
    height: auto;
}

.footer {
    background-color: #ffffff;
    text-align: center;
    padding: 6px;
    font-weight: bold;
    color: #000;
    font-size: 13px;
    flex-shrink: 0;
}

/* Media Query for desktop view */
@media (min-width: 992px) {
    .header-image-1 {
        height: 90px;
    }

    .header-image-2 {
        height: 90px;
    }

    .qr-code img {
        width: 40vw;
        max-width: 420px;
    }
}

/* Media Query for tablets and small devices */
@media (max-width: 767px) {
    .header .row {
        flex-wrap: wrap;
    }

    .logo-block {
        width: 50%;
    }

    .header-image-1,
    .header-image-2 {
        height: auto;
        max-height: 45px;
    }

    .qr-code img {
        width: 86vw;
        max-width: 300px;
    }
}

img.header-image-2 {
    margin-left: 34px;
}

/* Form */
label.form-label {
    color: white;
}

.btn-primary {
    color: #fff;
    background-color: #f8b916;
    border-color: #f8b916;
    margin-top: 15px;
}

.btn-primary:hover {
    color: #fff;
    background-color: #dba006;
    border-color: #dba006;
}

.form-select {
    padding: 0.65rem 1.7rem !important;
    width: 100%;
    border-radius: 5px;
    text-align: left;
}

/* logo */
img.company-imgae {
    height: 16px;
}

.company-name {
    color: white;
    font-size: 9px;
    margin: 0 0;
    padding: 0 0;
    text-align: center;
}

  .error-clr{
color:red;

}