form.contact .cf-input, form.contact input[type=text], form.contact select, form.contact textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

form.contact label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

.cf-submit, input[type=submit] {
    background-color: #4CAF50;
    color: white;
    margin-top:1%;
    padding: 12px 60px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

.cf-submit, input[type=submit]:hover {
    background-color: #45a049;
}

.col-15 {
    float: left;
    width: 15%;
    margin-top: 6px;
}
.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}
.col-35 {
    float: left;
    width: 35%;
    margin-top: 6px;
}
.col-65 {
    float: left;
    width: 65%;
    margin-top: 6px;
}
.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}
.col-85 {
    float: left;
    width: 85%;
    margin-top: 6px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}
label#cf-right {
    float: right;
}

.cf-button-right{
    justify-content:flex-end;
}

@media screen and (max-width: 600px) {
    .col-15, .col-35, .col-25, .col-65, .col-75, .col-85, cf-input, input[type=submit] {
        width: 90%;
        margin-top: 0;
        margin-left: 4%;
    }
    .cf-submit, input[type=submit] {
        float:none;
        margin-top:1%;
    }
    label#cf-right {
        float: none;
    }
    .cf-button-right{
        justify-content:normal;
    }
}
