.nsf-form {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

/* Keep the rounded look from your screenshot */
.nsf-form input[type="email"] {
    border-radius: 6px 6px 6px 6px !important;
}

.nsf-form button {
    background-color: #ff5c00;
    color: white;
    font-weight: bold;
    border-radius: 6px 6px 6px 6px !important;
    border: none;
    padding: 10px 0;
    transition: background-color 0.3s ease;
}

.nsf-form button:hover {
    background-color: #e14d00;
}

