.binaweb-form-wrapper {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 12px;
    font-family: sans-serif;
}
.binaweb-form h2 {
    text-align: center;
    margin-bottom: 20px;
}
.binaweb-form input[type="text"],
.binaweb-form input[type="url"],
.binaweb-form input[type="file"],
.binaweb-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.binaweb-form button {
    width: 100%;
    padding: 12px;
    background-color: #3d5afe;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}
.binaweb-form button:hover {
    background-color: #2a3eb1;
}
.binaweb-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background: #ff6f00;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}