.swfb-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: sans-serif;
}


.swfb-form input,
.swfb-form textarea,
.swfb-form select {

    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 15px;

}


.swfb-form input:focus,
.swfb-form textarea:focus,
.swfb-form select:focus {

    outline: none;
    border-color: #007cba;

}


.swfb-submit {

    background: #007cba;
    color: #fff;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;

}


.swfb-submit:hover {

    opacity: .9;

}


.swfb-submit:disabled {

    opacity: .6;
    cursor: not-allowed;

}


.swfb-response {

    margin-top: 15px;
    padding: 12px;
    display: none;

}


.swfb-response.success {

    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;

}


.swfb-response.error {

    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;

}