/* NetroFlex CIP, form embed base styling */
.nrp-embed-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 420px;
}
.nrp-optin-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nrp-field {
    display: flex;
}
.nrp-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
}
.nrp-input:focus {
    border-color: #333333;
}
.nrp-btn {
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.nrp-btn-submit {
    background: #111111;
    color: #ffffff;
}
.nrp-btn-submit:hover {
    background: #333333;
}
.nrp-btn-submit:disabled {
    opacity: 0.6;
    cursor: default;
}
.nrp-form-message {
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
}
.nrp-form-success {
    background: #eaf7ea;
    color: #1e6b1e;
}
.nrp-form-error {
    background: #fdeaea;
    color: #a12626;
}
