
/* ==============================
   Form Row
   ============================== */

.contact-form .row {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    clear: both;
}


/* ==============================
   Columns
   ============================== */

.contact-form .col-6 {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    padding: 0 10px;
}

.contact-form .col-12 {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0 10px;
}


/* ==============================
   Form Group
   ============================== */

.contact-form .form-group {
    width: 100%;
    margin-bottom: 20px;
    display: flow-root;
}


/* ==============================
   Form Control
   ============================== */

.contact-form .form-control {
    width: 100%!important;
    height: 48px!important;
    display: block!important;
    box-sizing: border-box!important;

    padding: 10px 14px!important;

    border: 1px solid #999!important;
    border-radius: 3px!important;

    background-color: #fff!important;
    color: #33!important;

    font-family: inherit;
    font-size: 15px!important;
    line-height: 1.5!important;

    outline: none!important;
}


/* ==============================
   Textarea
   ============================== */

.contact-form textarea.form-control {
    height: 120px;
    min-height: 120px;
    resize: vertical;
}


/* ==============================
   Select
   ============================== */

.contact-form select.form-control {
    cursor: pointer;
    appearance: auto;
}


/* ==============================
   Focus
   ============================== */

.contact-form .form-control:focus {
    border-color: #555;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}


/* ==============================
   Placeholder
   ============================== */

.contact-form .form-control::placeholder {
    color: #777;
    opacity: 1;
}


/* ==============================
   Error Message
   ============================== */

.contact-form .text-danger {
    display: block;
    margin-top: 5px;
    color: #dc3545;
    font-size: 13px;
}


/* ==============================
   reCAPTCHA
   ============================== */

.contact-form .g-recaptcha {
    margin-bottom: 20px;
}


/* ==============================
   Submit Button
   ============================== */

.contact-form input[type="submit"] {
    display: inline-block;

    padding: 12px 28px;

    border: 1px solid #333;
    border-radius: 3px;

    background: #333;
    color: #fff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
}

.contact-form input[type="submit"]:hover {
    background: #222;
    border-color: #222;
}


/* ==============================
   MOBILE
   ============================== */

@media (max-width: 767px) {

    .contact-form .row {
        width: 100%;
        display: block;
    }

    .contact-form .col-6,
    .contact-form .col-12 {
        width: 100%;
        display: block;
        padding: 0;
    }

    .contact-form .form-group {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-form .form-control {
        width: 100%;
        height: 46px;
        padding: 10px 13px;
        font-size: 14px;
    }

    .contact-form textarea.form-control {
        height: 110px;
        min-height: 110px;
    }

    .contact-form input[type="submit"] {
        width: 100%;
    }

}
