html {
    margin: 0;
    padding: 0;
}

body {
    background: #03c28c;
    margin: 0;
    padding: 0;
    line-height: 100%;
    overflow: hidden;
}

.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#mc_embed_signup_scroll {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

.mc-field-group {
    flex-basis: 23%;
}

input {
    font-size: 20px;
    padding: 20px 15px;
    border: none;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #fff;
    font-family: 'Gotham A', 'Gotham B', Gotham, sans-serif;
    transition: 250ms ease-in-out all;
}

input:focus {
    border: 1px solid #00263d;
    background: #eee;
}

input[type="submit"] {
    font-weight: bold;
    color: #00263d;
    cursor: pointer;
    transition: 250ms ease-in-out all;
    margin-bottom: 0;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    background: #00263d;
    border: 1px solid #00263d;
    color: #fff;
}

input:user-invalid {
    border: 1px solid red;
}

@media screen and (max-width: 767px) {
    #mc_embed_signup_scroll {
        display: block;
    }

    .mc-field-group {
        margin: 0 0 20px 0;
    }
}