/* Form Style Fix - Match Original Design */

/* Hide the background image that contains the header */
.contact-right-home {
    background-image: url(../images/form-bg.png) !important;
    background-repeat: no-repeat !important;
    background-position: right top !important;
    padding-top: 75px !important;
    width: 340px;
    overflow: hidden;
}

/* Override form area styling */
.form-area-home {
    margin: 0 auto;
    padding: 26px 22px 22px;
    width: 296px;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #FFF;
    background-color: transparent; /* Make transparent to show background */
}

/* Input containers */
.input-container-home {
    margin: 0 auto;
    padding: 0 0 15px;
    clear: both;
    width: 296px;
    height: 40px;
    font-size: 12px;
    color: #FFF;
    font-weight: bold;
}

.input-container2-home {
    margin: 0 auto;
    padding: 0 0 5px;
    clear: both;
    width: 296px;
    height: 94px;
    font-size: 12px;
    color: #FFF;
    font-weight: bold;
}

/* Input fields */
.input-home {
    margin: 0 auto;
    padding: 0 5px;
    width: 286px;
    height: 26px;
    border: none;
    background-color: #CCC;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    color: rgba(0,0,0,0.62);
}

.input2-home {
    margin: 0 auto;
    padding: 5px 5px;
    width: 286px;
    height: 74px;
    border: none;
    background-color: #CCC;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    color: rgba(0,0,0,0.62);
}

/* Submit button */
.submitbutton-home {
    float: right;
    margin: 25px 0 0 0; /* Increased top margin */
    padding: 0 0 2px 0;
    width: 108px;
    height: 40px;
    line-height: 40px;
    font-family: 'TrajanProBold', Arial, sans-serif;
    font-size: 16px;
    color: #000;
    background-image: url(../images/submit-button-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* Required text styling */
.required-text {
    color: #FFF;
    font-weight: normal;
    font-size: 10px;
}

.required {
    color: #FFF;
    font-weight: bold;
}

/* Captcha area */
.input-captcha-left {
    float: left;
    margin: 0 auto;
    padding: 11px 0;
    clear: both;
    width: 296px;
    overflow: hidden;
}

/* Contact form container */
.contact-form {
    padding: 0;
    width: 340px;
    margin: 0;
}

/* Fix the paragraph styling in captcha text */
.captcha-text p {
    margin: 5px 0 0 0;
    font-size: 10px;
    color: #FFF;
    font-weight: normal;
    text-align: right;
}

/* Remove the CSS-generated header since background image has it */
.contact-right-home::before {
    display: none;
} 