input.text, textarea {
    border: 1px solid #cfcfcf;
}

input.text:focus, textarea:focus {
    background-color: #f2f2f2;
}

input.error, textarea.error {
    border: 1px solid #c90a0a;
}

.field {
    margin: 1em 0;
}
.field-inputs {
    display: inline-block;
    vertical-align: top;
}
.field-label {
    display: inline-block;
    vertical-align: top;
    width: 200px;
    min-height: 1em;
    text-align: right;
    font-size: small;
    margin-right: 10px;
}
.field-label label {
    cursor: pointer;
}

@media only screen and (max-width : 1024px) {
    .field-label {
        width: 100px;
        margin-right: 5px;
        text-align: left;
    }
}

@media only screen and (max-width : 767px) {
    input,
    textarea {
        max-width: 100%;
    }
    .field-inputs {
        display: block;
        width: auto;
    }
    .field-label {
        display: block;
        width: auto;
        margin-right: 0;
    }
}
