.ns131-wrap {
    width: 100%;
    box-sizing: border-box;
}

.ns131-heading {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #63747a;
}

.ns131-description {
    margin: 0 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #5D9474;
}

.ns131-form {
    width: 100%;
}

.ns131-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ns131-input {
    flex: 1 1 220px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #63747a;
    background-color: #ffffff;
    border: 1.5px solid #8cb89f;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.ns131-input:focus {
    border-color: #63747a;
}

.ns131-btn {
    flex: 0 0 auto;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #8cb89f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.ns131-btn:hover {
    background-color: #63747a;
}

.ns131-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.ns131-message {
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    min-height: 20px;
}

.ns131-message.ns131-success {
    color: #8cb89f;
}

.ns131-message.ns131-error {
    color: #c0392b;
}
