#hapi-form{
    width:100%;
}
#hapi-form label{
    font-family: "Futura";
    color:#ae8551;
    font-weight:500;
    margin-top: 15px;
}
#hapi-form input, textarea, select{
    display: block;
    min-height: 2.5rem;
    appearance:none;
    -webkit-appearance:none;
    width:100%; 
    color:white;

    background: transparent;
    border: 1px solid #ae8551;
    padding: 5px 10px;
}
#hapi-form input:hover, textarea:hover, select:hover{
    border: 1px solid #e7bc86;
}

#hapi-form select option{
    color:white;
    background: #0c557a;
}

#hapi-form .select{
    display:block;
    position: relative;
}
#hapi-form .select::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 20px;
    width: 0.8em;
    height: 0.5em;
    background-color: gray;
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}


#hapi-form button{
    border:none;
    background: transparent; 
    
    font-family: 'Futura';
    font-weight: 500;
    font-size: 18px;
    line-height: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ae8551;
    padding-bottom: 25px;
    position: relative;
    text-align:center;
}
#hapi-form button::before{
    content: "";
    height: 18px;
    width: 260px;
    position: absolute;
    background: url(../../dist/images/line-arrow-right.png) bottom no-repeat;
    bottom: 0;
    left: -80px;
}