
.email-address form {
    position: relative;
    display: flex;
}
.email-address form .hs_email label{
    display:none !important;
}
.email-address form .hs_email .hs-input{
    width:420px;
    height: 80px;
    background-color: #ffffff;
    border: solid 1px #a1a1a1;
    border-right: none;
    padding-left:30px;
    font-size:20px;
}
.email-address form .hs_submit .actions input{
    width: 175px;
    height: 80px;
    background-color: #e60815;
    text-align:center;
    line-height:80px;
    font-size: 30px;
    color:#fff;
}
.email-address form .hs_submit .actions input:hover{
    background-color: #0d0d0d;
}
.hs_error_rollup{
    color: red;
    font-size: 20px;
    position: absolute;
    top: 90px;
    left: 25px;
}
.submitted-message{
    font-size: 30px;
    margin-right: 100px;
}

@media(max-width:750px){
    .email-address form .hs_email{
        flex:1;
    }
    .email-address form .hs_email .hs-input{
        width:100%;
        height: 40px;
        padding-left:10px;
        font-size:14px;
    }
    .email-address form .hs_submit .actions input{
        width: 80px;
        height: 40px;
        background-color: #e60815;
        text-align:center;
        line-height:40px;
        font-size: 14px;
        color:#fff;
    }
    

    .email-address form .hs_email .hs-input::-webkit-input-placeholder{
        font-size: 12px;
    }

}