#simple-quote-form {
    max-width: 800px;
    margin: 0 auto;
}

#simple-quote-form input,
#simple-quote-form textarea,
#simple-quote-form button {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-size: 16px;
}

#simple-quote-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}

#simple-quote-form button {
    background: #ff3300;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

#simple-quote-form button:hover {
    background: #cc2200;
}

.sqf-field {
    margin-bottom: 10px;
}

.sqf-field label {
    display: block;
    background: #000;
    color: #fff;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
}

.sqf-field textarea {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    border: 1px solid #000;
    box-sizing: border-box;
    line-height: 1.5;
    min-height: 150px;
}
