.form-div {
    /*background-color:rgba(72,72,72,0.4);*/
    /*background-color: #292c2f;*/
    padding: 35px 35px 50px 35px;
    width: 450px;
}

.feedback-input {
    color:#3c3c3c;
    font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
    font-size: 18px;
    border-radius: 0;
    line-height: 22px;
    background-color: #fbfbfb;
    padding: 13px 13px 13px 54px;
    margin-bottom: 10px;
    width:100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid rgba(0,0,0,0);
}

.feedback-input:focus{
    background: #fff;
    box-shadow: 0;
    border: 3px solid rgba(0,126,105,1);
    color: rgba(0,126,105,1);
    outline: none;
    padding: 13px 13px 13px 54px;
}

.focused{
    color:rgba(0,126,105,1);
    border:rgba(0,126,105,1) solid 3px;
}

/* Icons ---------------------------------- */
#lastName, #firstName{
    background-image: url('../images/user.png');
    background-size: 30px 30px;
    background-position: 8px 5px;
    background-position: 11px 8px;
    background-repeat: no-repeat;
}

#email{
    background-image: url('../images/mail.png');
    background-size: 30px 30px;
    background-position: 11px 8px;
    background-repeat: no-repeat;
}

#phone{
    background-image: url('../images/phone.png');
    background-size: 30px 30px;
    background-position: 11px 8px;
    background-repeat: no-repeat;
}

#comment{
    background-image: url('../images/message.png');
    background-size: 30px 30px;
    background-position: 11px 8px;
    background-repeat: no-repeat;
    resize: none;
}

textarea {
    width: 100%;
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

input:hover, textarea:hover,
input:focus, textarea:focus {
    background-color:white;
}

#button-blue{
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    float:left;
    width: 100%;
    border: #fbfbfb solid 4px;
    cursor:pointer;
    background-color: rgba(0,126,105,1);
    color:white;
    font-size:24px;
    padding-top:22px;
    padding-bottom:22px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin-top:-4px;
    font-weight:700;
}

#button-blue:hover{
    background-color: rgba(0,0,0,0);
    color: rgba(0,126,105,1);
}

.submit:hover {
    color: rgba(0,126,105,1);
}

.ease {
    width: 0px;
    height: 74px;
    /*background-color: deeppink;*/
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -o-transition: .3s ease;
    -ms-transition: .3s ease;
    transition: .3s ease;
}

.submit:hover .ease{
    width:100%;
    background-color: white;
}

@media only screen and (max-width: 580px) {
    #form-div{
        left: 3%;
        margin-right: 3%;
        width: 88%;
        margin-left: 0;
        padding-left: 3%;
        padding-right: 3%;
    }
}