.soukbit-newsletter {
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    color: #000;
}

.soukbit-newsletter h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #000;
}

/* Row Layout */
.soukbit-newsletter .form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

/* Stable Width Ratio */
.soukbit-newsletter .form-row .form-group:first-child {
    flex: 1;
}

.soukbit-newsletter .form-row .form-group:last-child {
    flex: 2;
}

/* Inputs */
.soukbit-newsletter input[type="text"],
.soukbit-newsletter input[type="email"] {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;          /* More prominent */
    font-weight: 500;         /* Stronger */
    font-family: 'Work Sans', sans-serif;
    border: 1px solid #bbb;
    border-radius: 6px;
    background: #fff;
    color: #000;
    box-sizing: border-box;
}

/* Prominent Placeholder */
.soukbit-newsletter input::placeholder {
    color: #444;
    font-weight: 500;
    opacity: 1;
}

/* Button */
.soukbit-newsletter input[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    border: none;
    border-radius: 6px;
    background: #3943b8;
    color: #ffffff;
    cursor: pointer;
    transition: 0.2s ease;
}

.soukbit-newsletter input[type="submit"]:hover {
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
    .soukbit-newsletter .form-row {
        flex-direction: column;
    }
}
/* MC4WP Success Message Styling */
.mc4wp-success {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin-top: 12px;
    line-height: 1.6;
}

/* If message appears inside paragraph */
.mc4wp-success p {
    font-family: 'Work Sans', sans-serif !important;
    margin: 0;
}

/* Optional: make links clean */
.mc4wp-success a {
    color: #3943b8;
    text-decoration: none;
    font-weight: 600;
}

.mc4wp-success a:hover {
    text-decoration: underline;
}

