

.cf-form form > div {
    margin-top: 1em;
}
.cf-form label {
    font-size: .9em;
    display: block;
}

.cf-form input, .cf-form textarea, .cf-form button  {
    background: #fff;
    border: solid thin #bbb;
    border-radius: 8px;
    padding: .2em .4em;
    line-height: 1.5em;
    width: 100%;
}

.cf-form textarea {
    min-height: 100px;
}

.cf-form input:focus, .cf-form textarea:focus {
    border-color: #7a9cad;
    -moz-box-shadow: 0 0 1em rgba(231, 45, 68, .3);
}

.cf-form textarea {
    max-width: 100%;
}

/* submit button */


.cf-form button[type="submit"] {
    color: #fff;
    background-color: #256466;
    border: 2px solid #7a9cad;
    min-width: 150px;
    width: 150px;
}







/*  Form structure */

.cf-form fieldset {
    background: #efefef;
    margin: 1em 0;
    border-radius: 0 8px 8px 8px;
    padding: 1%;
}

.cf-form fieldset legend {
    color: #7a9cad;
    background: #efefef;
    line-height: 1.4em;
    padding-left: .3em;
    margin-left: -.3em;
    padding-right: .6em;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
}