.kgv-card{
    max-width:620px;
    margin:50px auto;
    padding:25px;
    background:linear-gradient(135deg,#fff,#f9f9f9);
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    font-family:system-ui, sans-serif;
}

.kgv-image{
    width:100%;
    border-radius:14px;
    margin-bottom:20px;
}

.kgv-card h2{
    text-align:center;
    margin-bottom:20px;
}

.kgv-card input,
.kgv-card select,
.kgv-card textarea{
    width:100%;
    padding:14px;
    margin-bottom:14px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:15px;
}

.kgv-card button{
    width:100%;
    padding:15px;
    background:#000;
    color:#fff;
    font-size:16px;
    border:none;
    border-radius:12px;
    cursor:pointer;
}

.kgv-card button:hover{
    background:#222;
}
/* Festive animation */
.kgv-card{
    animation: kgvFade 0.8s ease-in-out;
}

@keyframes kgvFade{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.kgv-image{
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}
