body {
    padding: 20px 0;
}

.contact-form-row {
    clear: both;
    overflow: hidden;
    padding: 1px;
    margin: 0 0 10px 0;
}

.contact-form-row label {
    float: left;
    width: 15%;
    padding: 5px 10px 5px 5px;
}

.contact-form-widget {
    float: right;
    width: 85%;
    height: 100%;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
    padding: 5px;
    border: 1px solid #CCCCCC;
    border-right-color: #EEEEEE;
    border-bottom-color: #EEEEEE;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea,
select {
    width: 100%;
}

input[type=checkbox] {
    margin-top: 12px;
    margin-left: 10px;
    transform: scale(1.75);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus {
    outline: 0;
    border-color: #4697E4;
}

@media (max-width: 768px) {
    .contact-form-row {
        margin: 0 0 15px 0;
    }

    .contact-form-row label  {
        width: 100%;
        float: none;
        margin: 0 0 5px 0;
    }

    .contact-form-widget  {
        width: 100%;
        float: none;
    }

    input[type=text],
    input[type=email],
    input[type=url],
    input[type=password],
    textarea,
    select {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .contact-form-row label {
        text-align: right;
    }

    input[type=text],
    input[type=email],
    input[type=url],
    input[type=password] {
        width: 50%;
    }

    textarea {
        width: 75%;
    }
}