/******* Contact Form 7 CSs *********************/

.cf7-stylish {
    max-width: 600px;
    margin: auto;
    font-family: inherit;
}

.cf7-field {
    margin-bottom: 18px;
}

.cf7-stylish input,
.cf7-stylish textarea,
.cf7-stylish select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.cf7-stylish textarea {
    min-height: 130px;
    resize: vertical;
}

.cf7-stylish input:focus,
.cf7-stylish textarea:focus,
.cf7-stylish select:focus {
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0,115,170,0.15);
    outline: none;
}


		
/* Submit Button */
.cf7-stylish input[type="submit"] {
    background: linear-gradient(135deg, #116e3f, #085f33);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    padding: 14px;
    border-radius: 50px;
}

.cf7-stylish input[type="submit"]:hover {
    background: linear-gradient(135deg, #085f33, #116e3f);
    transform: translateY(-1px);
}

/* Error Message */
.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #dc3232;
    margin-top: 6px;
}

/* Success Message */
.wpcf7-response-output {
    border-radius: 8px;
    padding: 15px;
}


/***************************************/