body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradientBackground 6s ease infinite;
    color: white;
    text-align: center;
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.confirmation-message {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    text-align: center;
    border: 4px solid white;
}

.confirmation-message img {
    max-width: 150px;
    margin-bottom: 20px;
    border: 3px solid white;
    border-radius: 50%;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.1);
}

p {
    font-size: 1.2em;
    color: #e0e0e0;
}

a {
    color: #fff;
    text-decoration: underline;
}

.fa-check-circle {
    font-size: 48px; /* Large green checkmark */
}

a.kudu{
    color: #00FFFF;
    text-decoration: underline; 
    font-weight:bold; 
    font-style: italic; 
}
    a.kudu:hover{
            color: green;
            text-decoration: underline;
    }