/* Custom styling for Contact Form 7 */

.screen-reader-response {
    display: none;
}

/* Reduce the height of the message textarea */
.wpcf7-form textarea {
    height: 150px; /* Adjust this value as needed */
}

/* General form styling to match the original design */
.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Style the submit button */
.wpcf7-submit {
    background-color: #fff;
    color: #1a6357;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 10px 20px;
}

.wpcf7-submit:hover {
    background-color: #e6e6e6;
}

/* Add spacing between form elements */
.wpcf7-form .form-group {
    margin-bottom: 15px;
}

/* Style validation errors */
.wpcf7-not-valid-tip {
    color: var(--bs-danger-text);
    font-size: 0.9em;
    margin-top: 5px;
}

.wpcf7-response-output {
    border: none !important;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px !important;
    margin: 20px 0 0 0 !important;
    border-radius: 5px;
}
