/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 04 2026 | 18:06:13 */
/* --- Ninja Forms Style Match --- */

/* 1. Form Container Styling */
.nf-form-content {
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* 2. Label Styling */
.nf-form-content .nf-field-label label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: #444;
}

/* 3. Input and Textarea Styling */
.nf-form-content input:not([type="button"]), 
.nf-form-content textarea, 
.nf-form-content select {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 12px 15px !important;
    font-size: 16px;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

/* Focus State */
.nf-form-content input:focus, 
.nf-form-content textarea:focus {
    border-color: #234a70; /* NAETISL Blue */
    outline: none;
}

/* 4. Submit Button Styling */
.nf-form-content input[type="submit"] {
    background-color: #154734 !important; 
    color: #ffffff !important;
    font-size: 16px;
    font-weight: regular;
    text-transform: uppercase;
    padding: 15px 35px !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Submit Button Hover */
.nf-form-content input[type="button"]:hover {
    background-color: #8dc63f !important; /* NAETISL Green */
    color: #fff !important;
}

/* 5. Required Asterisk */
.nf-form-content .ninja-forms-req-symbol {
    color: #d9534f;
}

/* 6. Checkbox & Radio Alignment */
.nf-form-content .nf-field-element ul li {
    list-style: none;
    margin-bottom: 10px;
}

/* 7. Column Layout (For First/Last Name) */
/* Note: In Ninja Forms builder, add the class "one-half first" to First Name 
   and "one-half" to Last Name under Display settings. */
@media only screen and (min-width: 600px) {
    .nf-form-content .one-half {
        width: 48%;
        float: left;
        margin-right: 4%;
    }
    .nf-form-content .one-half.last, 
    .nf-form-content .one-half:nth-child(even) {
        margin-right: 0;
    }
    .nf-form-content .nf-row {
        clear: both;
    }
}

/* Success Message Styling */
.nf-response-msg {
    background: #f4f9f2;
    border: 1px solid #8dc63f;
    color: #234a70;
    padding: 20px;
    border-radius: 4px;
}