
/* wraper col */

.custom-p-form {
    margin: 0;
}


/* Wrapper */
.contact-wp-form {
    background-color: #FFF; /*#f5f5f7;*/
    padding: 20px 0 50px 0;
}

.contact-form-title {
    font-size: 14px !important;
    /*color: #444 !important;*/
    font-weight: 500 !important;
    text-align: center !important;
    margin-bottom: 30px !important;
}

/* Form fields */
.baron-custom-form .form-row {
    margin-bottom: 25px;
}

.baron-custom-form .form-field label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 6px;
}

.baron-custom-form .form-field label .required {
    color: red;
    margin-left: 2px;
}

/* Inputs */
.baron-custom-form input[type="text"],
.baron-custom-form input[type="email"],
.baron-custom-form input[type="tel"],
.baron-custom-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.baron-custom-form textarea {
    resize: none;
    min-height:170px;
}

.baron-custom-form input:focus,
.baron-custom-form textarea:focus {
    border-color: #999;
    outline: none;
}

/* Character counter */
#comment + div {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* Submit button */
.baron-custom-form .submit-button {
    background-color: #28c76f;
    color: #fff;
    padding: 10px 25px;
    /*margin-top:10px;*/
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.baron-custom-form .submit-button:hover {
    background-color: #22b662;
}

/* Messages */
#form-messages {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
}

#form-messages.success-message {
    background-color: #d4edda; /* Light green */
    color: #155724; /* Dark green text */
    border: 1px solid #c3e6cb;
}

#form-messages.error-message {
    background-color: #f8d7da; /* Light red */
    color: #721c24; /* Dark red text */
    border: 1px solid #f5c6cb;
}


