input{
    border: none;
}

.input--rounded{
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
    
textarea,
select,
input{
    border:none;
    padding:11px 14px;
    line-height:1;
    background:#f3f3f3;
    outline:none;
    border-radius:0;
    font-family: 'Gotham', sans-serif;
    max-width: 100%;
}

form input[type="submit"],
form button{
    padding:11px 14px;
    line-height:1;
    background:var(--e-global-color-primary);
    color:white;
    border:none;
    outline:none;
    text-transform:uppercase;
    cursor:pointer;
    transition:background-color 0.25s;
    font-weight:bold;
    color: #FFF;
    font-family: 'Gotham', sans-serif;
}

form button:hover{ 
}


:-webkit-input-placeholder { /* Edge */
    color: #adadad;
    font-size: 14px;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #adadad;
    font-size: 14px;
}

::placeholder {
    color: #adadad;
    font-size: 14px;
}

