*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
/* #08090A */
/* #8789C0 */
/* #5DFDCB */
body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#7CC6FE;
}
.box{
    background-color: #9381ff;
    padding: 30px;
    width: 400px;
    border-radius: 8px;
    color:#f8f7ff;
    margin-bottom: 24px;
    text-transform: uppercase;

}
.qr-header input{
    width:100%;
    margin-block: 12px;
}
.qr-header input,select{
padding: 8px;
border-radius: 8px;
font-size: 18px;
outline: none;
border:2px solid #8789C0 ;
}
.qr-header label{
    font-size: 18px;
}
.qr-header div{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.qr-footer{
    margin-top: 30px;
    display: flex;
    justify-content: center;

}
.qr-footer a{
    text-decoration: none;
    background-color: #08090a;
    color: #f4faff;
    font-size: 18px;
    padding: 14px 30px;
    margin-inline: 2px;
    font-weight: 700;
    border-radius: 8px;
}
.qr-body{
    display: grid;
    place-items: center;
    padding: 18px;
}

.qr-body img{
    max-width: 100%;
    max-height: 100%;
    margin-block:10px;
    padding: 20px;
    border:0.5px solid #7CC6FE;
    border-radius: 8px;

}
@media screen and (max-width:420px){
    .box{
        width: 80%;
    }
    .qr-footer a{
        padding: 8px;
        font-size: 12px;
        margin-inline: 2px;
        font-weight: 500;
        width: 50%;
        text-align: center;
    }
}