.enews-cta {
    width: 100%;
    max-width: 375px;
    padding: 0 20px;
    margin: 0 auto;
}

.enews-cta > img {
    width: 258px;
    margin-left: 38px;
    margin-bottom: 15px;
}

.enews-cta .form {
    display: flex;
    height: 45px;
    margin-top: 14px;
}

.enews-cta .form .form-field {
    flex-grow: 1;
}

.enews-cta .form .form-field input {
    margin: 0;
    height: 100%;
    background-color: var(--ocean);
    color: #FFF;
    font-size: 18px;
    text-indent: 12px;
    border: none;
    box-shadow: none;
    padding: 9px 8px 5px;
}

.enews-cta .form .form-field input:focus {
    border: none;
    box-shadow: none;
}

.enews-cta .form .form-field input::placeholder {
    color: #FFF;
    font-size: 18px;
}

.enews-cta .form .submit {
    width: 100%;
    font-family: var(--font-body);
    font-weight: var(--weight-semibold);
    font-size: 16.05px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--ocean);
    margin: 0;
    padding: 5px;
}

.enews-cta .form .submit:focus {
    outline: 1px dashed var(--ocean);
}
@media (max-width: 40em) {
    .enews-cta a img {
        width: 280px;
        display: block;
        margin: 0 auto;
    }
}

@media (min-width: 40em) {
    .enews-cta > img {
        width: calc(258px + (357 - 258) * ((100vw - 640px) / (1024 - 640)));
    }
}

@media (min-width: 64em) {
    .enews-cta {
        max-width: 359px;
        padding: 0;
        margin: 0 auto;
    }

    .enews-cta > img {
        width: 357px;
        margin-left: 2px;
        margin-bottom: 20px;
    }

    .enews-cta .form {
        height: 44px;
        margin-top: 20px;
    }

    .enews-cta .form .submit {
        font-size: 20px;
        padding: 5px 5px 5px 8px;
    }
}