.enews {
    margin-bottom: 40px;
}

.enews .form {
    margin: 0 auto;
    max-width: 640px;
}

.enews .title {
    font-family: "open-sans", sans-serif;
    color: #FFF;
    font-size: 20px;
    line-height: 1.2em;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
}

.enews .description{
    font-family: "open-sans", sans-serif;
    color: #FFF;
    font-size: 14px;
    line-height: 1.7em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.enews .form-field {
    display: flex;
    margin: 0 auto;
    max-width: 276px;
}

.enews .field-name {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.enews .field-control {
    margin: 0;
    box-shadow: none;
    height: 28px;
    line-height: 28px;
    padding: 0 0.5rem;
    background-color: #e6e7d9;
    color: #8e7959;
    font-size: 17px;
    font-family: "open-sans", sans-serif;
    text-transform: uppercase;
}

.enews .field-control:focus {
    outline: none;
    box-shadow: none;
    background-color: #e6e7d9;
}

.enews .submit {
	margin-bottom: 0;
	padding: 5px 23px;
	font-size: 1rem;
	color: #fff;
	border: none;
	background-color: #e81e26;
    position: relative;
    overflow: hidden;
}
.enews .submit i {
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 64em) {
    .enews {
        margin-bottom: 0px;
    }
    .enews .title {
        font-size: 28px;
        letter-spacing: 2.8px;
    }

    .enews .description{
        font-family: "open-sans", sans-serif;
        color: #FFF;
        font-size: 14px;
        line-height: 1.4em;
        font-weight: 500;
        text-align: center;
    }
    .enews .form-field {
        max-width: 318px;
        
    }
    .enews .field-control {
        height: 32px;
        line-height: 32px;
        font-size: 19px;
    }
    .enews .submit {
        padding: 5px 29px;
    }
    .enews .submit::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #e1cf01;
        top: 0;
        left: -100%;
        -webkit-transition: left 300ms ease-out;
        -moz-transition: left 300ms ease-out;
        -o-transition: left 300ms ease-out;
        transition: left 300ms ease-out;
    }

    .enews .submit:hover::before {
        left: -6px;
    }
}