/* Minimal and bold style for the form, inspired by Typeform */
body,
html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('your-background-image.jpg') no-repeat center center fixed;
    /* Add a background image for better effect */
    background-size: cover;
}

main.dynamic-display {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    backdrop-filter: blur(10px);
    /* Light background to make the form stand out */
}

form {
    background: rgba(255, 255, 255, 0.4);
    /* Semi-transparent white background */
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    /* Blur effect for the glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.18);
    /* Border to enhance the glass effect */
    text-align: center;
}

input[type="text"],
input[type="email"],
textarea {
    width: calc(100% - 20px);
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    border: 2px solid #ddd;
    font-size: 18px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent background */
    backdrop-filter: blur(5px);
    /* Blur effect for the glassmorphism */
}

button[type="submit"] {
    background-color: rgba(0, 0, 0, 0.7);
    /* Semi-transparent black for the button */
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: rgba(0, 61, 130, 0.7);
    /* Darker shade on hover with transparency */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    form {
        padding: 20px;
    }

    input[type="text"],
    input[type="email"],
    textarea,
    button[type="submit"] {
        font-size: 16px;
        /* Slightly smaller font size on smaller screens */
    }
}