/* Basic Styling for Secure Contact Form */
.scf-form .scf-form-field {
    margin-bottom: 15px;
}

.scf-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.scf-form input[type="text"],
.scf-form input[type="email"],
.scf-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box; /* Include padding and border in element's total width */
}

.scf-form textarea {
    min-height: 100px;
    vertical-align: top;
}

.scf-form .scf-required {
    color: red;
    margin-left: 2px;
}

.scf-form .scf-submit-button {
    padding: 10px 20px;
    background-color: #0073aa; /* WP Blue */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.scf-form .scf-submit-button:hover {
    background-color: #005a87;
}

/* Checkbox styling (for future 'send copy') */
.scf-form .scf-checkbox-field input[type="checkbox"] {
   width: auto;
   margin-right: 5px;
   vertical-align: middle;
}
.scf-form .scf-checkbox-field label {
   display: inline-block;
   font-weight: normal;
}


/* CAPTCHA field spacing */
.scf-form .scf-captcha-field {
    /* Add specific styles if needed, e.g., min-height */
    min-height: 78px; /* Approximate height for reCAPTCHA v2 Checkbox */
}

/* Status Messages */
#scf-form-anchor { /* Invisible anchor */
    display: block;
    height: 0;
    overflow: hidden;
    position: relative;
    top: -50px; /* Adjust offset if you have a fixed header */
}

.scf-notice {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border-left-width: 4px;
    border-left-style: solid;
}

.scf-success {
    background-color: #f0fff4; /* Light green */
    border-left-color: #4CAF50; /* Green */
    color: #1e4620;
}

.scf-error {
    background-color: #fff5f5; /* Light red */
    border-left-color: #f44336; /* Red */
    color: #7f2020;
}
