.bdw-newsletter-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.bdw-newsletter-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bdw-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.bdw-form-field {
    margin-bottom: 15px;
}

.bdw-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.bdw-form-field input[type="text"],
.bdw-form-field input[type="email"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.bdw-form-field input[type="text"]:focus,
.bdw-form-field input[type="email"]:focus {
    outline: none;
    border-color: #2271b1;
}

.bdw-consent-field label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.bdw-consent-field input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.bdw-submit-button {
    width: 100%;
    padding: 12px 20px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bdw-submit-button:hover {
    background: #135e96;
}

.bdw-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.bdw-form-message {
    padding: 12px 15px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 14px;
}

.bdw-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bdw-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 600px) {
    .bdw-form-row {
        grid-template-columns: 1fr;
    }
    
    .bdw-newsletter-form {
        padding: 20px;
    }
}
