body {
    background: #dfe8ff !important;
}

.vdp-box {
    max-width: 600px;
    margin: 40px auto;
    background: lightskyblue;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    animation: fadeIn 0.6s ease;
}

.vdp-heading {
    text-align: center;
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 800;
    color: #222;
}

.vdp-form {
    display: flex;
    gap: 10px;
}

.vdp-form input {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #bbb;
    font-size: 15px;
}

.vdp-submit {
    background: #e63946;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: .2s;
}

.vdp-submit:hover {
    background: #c82333;
}

.vdp-success-box {
    margin-top: 25px;
    background: #eaffea;
    padding: 20px;
    border-left: 5px solid #2ecc71;
    border-radius: 10px;
    animation: slideIn 0.7s ease;
}

.vdp-time {
    font-size: 13px;
    color: #444;
}

.vdp-links {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vdp-btn {
    background: #007bff;
    padding: 10px 14px;
    border-radius: 8px;
    color: white !important;
    font-weight: bold;
    text-decoration: none;
    transition: .2s;
}

.vdp-btn:hover {
    background: #72bf6a;
}

.vdp-error {
    background: #ffecec;
    padding: 15px;
    border-left: 5px solid #ff3b3b;
    margin-top: 20px;
    border-radius: 10px;
    animation: shake 0.4s ease;
}

/* Animations */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideIn {
    from {transform: translateY(20px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

@keyframes shake {
    10% {transform: translateX(-4px);}
    30% {transform: translateX(4px);}
    50% {transform: translateX(-4px);}
    70% {transform: translateX(4px);}
    100% {transform: translateX(0);}
}

