body {
    background: linear-gradient(to left, #fdeff9, #ec38bc, #7303c0, #03001e);
    background-size: 300% 300%;
    animation: gradientFlow 5s infinite alternate ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }  
    50% { background-position: 50% 50%; }  
    100% { background-position: 100% 50%; }  
}

.MRP {
    background: linear-gradient(135deg, #8EC5FC, #E0C3FC);  
    color: #2a2a2a; 
    padding: 14px;
    text-align: center;
    border-radius: 14px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0px 5px 15px rgba(140, 182, 255, 0.5);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 20px;
}

.QR img {
    width: 250px; /* Adjust size properly */
    height: auto;
    margin-bottom: 20px;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(37, 211, 102, 0.4);
    padding: 12px;
    width: fit-content;
}

.button button {
    background: inherit;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(37, 211, 102, 0.6);
}

.button:hover {
    transform: scale(1.1);
    box-shadow: 0px 5px 25px rgba(18, 140, 126, 0.8), 0px 0px 20px rgba(37, 211, 102, 0.6);
    filter: brightness(1.2);
}
