/* Council Rock Contact Form */

.crc-contact-form-wrapper {
    width: 100%;
    max-width: 760px;
}


.crc-field {
    margin-bottom: 28px;
}


.crc-field label {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #222;
    margin-bottom: 8px;
}


.crc-field label span {
    color: #e33434;
    margin-left: 2px;
}


.crc-help-text {
    color: #6d8fb5;
    font-size: 16px;
    margin-bottom: 10px;
}



.crc-field input,
.crc-field select,
.crc-field textarea {

    width: 100%;
    box-sizing: border-box;

    background-color: #f7f9fb;

    border: 2px solid #c8d7e7;

    border-radius: 7px;

    color: #333;

    font-size: 18px;

    padding: 15px 14px;

    font-family: inherit;

    transition: border-color .2s ease;

}



.crc-field input {

    height: 60px;

}



.crc-field select {

    height: 60px;

    appearance: auto;

    color: #777;

}



.crc-field textarea {

    min-height: 110px;

    resize: vertical;

}



.crc-field input:focus,
.crc-field select:focus,
.crc-field textarea:focus {

    outline: none;

    border-color: #3c8d87;

    background-color: #fff;

}




.crc-disclaimer {

    color: #344d69;

    font-size: 16px;

    line-height: 1.9;

    margin: 28px 0 32px;

}



.crc-submit {

    background-color: #3d8985;

    border: none;

    color: white;

    font-size: 18px;

    font-weight: 600;

    padding: 15px 40px;

    border-radius: 5px;

    cursor: pointer;

    transition: background-color .2s ease;

}



.crc-submit:hover {

    background-color: #32736f;

}



.crc-submit:disabled {

    opacity: .6;

    cursor: not-allowed;

}



.crc-message {

    margin-top: 20px;

    font-size: 16px;

}



.crc-message.success {

    color: #27823c;

}



.crc-message.error {

    color: #c62828;

}



/* Mobile */

@media(max-width: 767px) {


    .crc-field label {

        font-size: 16px;

    }


    .crc-field input,
    .crc-field select,
    .crc-field textarea {

        font-size: 16px;

    }


    .crc-submit {

        width: 100%;

    }

}