.wprc-wrapper {
    font-family: system-ui, serif;
    background-color: white;

    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);
    padding: 2rem;
    border-radius: 0.25rem;
    margin: 1rem;
    display: inline-block;
}

.wprc-label {
    margin-bottom: 1rem;
    display: block;
}

.wprc-label-text {
    font-family: system-ui, serif;
    color: #a0aec0;
    font-weight: 700;
    margin-bottom: 0.25rem;
    display: block;
    padding-right: 1rem;
    line-height: 1;
}

input[type="text"].wprc-input,
input[type="tel"].wprc-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border-style: solid;

    font-family: system-ui, serif;

    background-color: #edf2f7;
    border-width: 2px;
    border-color: #edf2f7;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    color: #4a5568;
    line-height: 1.25;
}

input[type="text"].wprc-input:focus,
input[type="tel"].wprc-input:focus {
    outline: 0;
    background-color: white;
}

button.wprc-button {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);

    padding: 0.5rem 1rem;

    font-weight: 700;
    border-radius: 0.25rem;

    cursor: pointer;
    border: none;
    color: white;
}

button.wprc-button:hover {
    color: white;
    opacity: 0.8;
}

button.wprc-button:focus {
    color: white;
    outline: 0;

    -webkit-box-shadow: 0 0 0 3px rgba(66,153,225,.5);
    -moz-box-shadow: 0 0 0 3px rgba(66,153,225,.5);
    box-shadow: 0 0 0 3px rgba(66,153,225,.5);
}

.wprc-validation-errors ul {
    list-style: none;
    padding-left: 0;
    margin-top: -0.75rem;
}

.wprc-validation-errors li {
    line-height: 1.5;
    margin: 0;
    font-size: 0.75rem;
    color: #D50032;
}

.wprc-message {
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .wprc-form {
        width: 24rem;
    }

    .wprc-label {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .wprc-label-text {
        width: 20%;
        text-align: right;
        margin-bottom: 0;
    }

    .wprc-input {
        width: 80%;
    }

    .wprc-button-wrapper {
        width: 100%;
        padding-left: 20%;
    }

    .wprc-button {
        margin-left: 0.25rem;
    }

    .wprc-validation-errors {
        width: 80%;
        margin-left: auto;
    }

    .wprc-validation-errors ul {
        list-style: none;
        padding-left: 0;
        margin-top: -1.25rem;
    }
}

