body .fdp-form, #fdp-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    font-family: 'Roboto', Arial, sans-serif;
}
#fdp-form h2 {
    text-align: center;
    color: #1826ff;
    margin-bottom: 24px;
}
#fdp-form input, #fdp-form select {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e2e6ee;
    font-size: 1rem;
}
#fdp-form .fdp-phone {
    display: flex;
    gap: 8px;
}
#fdp-form button {
    width: 100%;
    padding: 18px;
    background: #1826ff;
    color: #fff;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.2s;
}
#fdp-form button:hover {
    background: #1220e0;
}
#fdp-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
#fdp-message {
    text-align: center;
    margin-top: 18px;
    color: #1826ff;
    font-weight: bold;
}