/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 28 2025 | 21:00:04 */
/* Background and Font */
body.page-id-11300 {
    background-color: #f4f7fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

/* Title Styling */
body.page-id-11300 h1 {
    color: #1a73e8;
    text-align: center;
    padding: 20px 0;
    font-size: 3em;
    font-style: italic;
    animation: fadeInDown 1s ease-in-out;
}

/* Form Container */
body.page-id-11300 iframe {
    display: block;
    margin: 30px auto;
    border: 2px solid #1a73e8;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    padding: 10px;
    width: 90%;
    max-width: 800px;
    min-height: 500px;
    animation: fadeInUp 1.5s ease-in-out;
    background-color: #ffffff;
}

/* Disclaimer Styling */
body.page-id-11300 .form-disclaimer {
    text-align: center;
    font-size: 0.9em;
    color: #555;
    margin-top: 20px;
    animation: fadeInUp 2s ease-in-out;
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

