/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.pfah-wrapper {
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0;
    margin: 0 -5px;
}
.pfah-wrapper form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pfah-wrapper form > div {
    flex: 1 0 250px;
    padding: 5px;
}
.pfah-wrapper form > .wrapper-submit {
    flex: 0 1 auto;
    width: auto;
    height: 100%;
}
.pfah-wrapper input {
    padding: 15px;
    width: 100%;
    border-radius: 0;
    border: 1px solid #ccc;
}
.pfah-wrapper input:focus {
    outline: 3px solid #f29620;
    outline-offset: -3px;
    border: 1px solid #f29620;
}
.pfah-wrapper [type=submit] {
    background: #f29620;
    border-radius: 3px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    border: none;
    outline: none;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    font-family: "BebasNeue Regular", sans-serif;
}
.pfah-wrapper [type=submit]:focus {
    outline-color: #01558c;
    border: none;
}


/****************************************/

@media (min-width: 768px) {
    .pfah-newsletter form > div {
        flex-basis: 50%;
    }
}