

.form-wrapper{
    width: 330px;
    padding: 35px;
    background-color: #fff;
    margin-top: 35px;
    box-shadow:  0 0 15px rgba(0,0,0,0.4);
    font-family: 'Helvetica';
}

.form-wrapper input{
    outline: none;
}


.form-wrapper .title{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #f26225;
    min-height: 70px;
    line-height: 1.2;
}

.form-wrapper .description{
    font-size: 16px;
    font-weight: 300;
    color: #808080;
    text-align: center;
    padding: 10px 0 20px 0;
    line-height: 1.2;
}

.form-wrapper .line{
    margin-bottom: 20px;
}

.form-wrapper .line input{
    width: 330px;
    box-sizing: border-box;
    border: 1px solid #b9b9b9;
    padding: 0 20px 0 60px;
    line-height: 50px;
    font-size: 16px;
}

.form-wrapper .line input[name="call-name"]{
    background: url(images/ico-user.png) 14px 50% no-repeat;
}
.form-wrapper .line input[name="call-phone"]{
    background: url(images/ico-phone.png) 14px 50% no-repeat;
}
.form-wrapper .line input[name="call-email"]{
    background: url(images/ico-email.png) 14px 50% no-repeat;
}

.form-wrapper .button-wrapper{
    text-align: center;
}

a.orangebutton,
.orangebutton{
    background-color:#f26225;
    font-size: 16px;
    display: inline-block;
    padding: 18px 25px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-family: 'Helvetica';
    font-weight: 300;
    transition: all 0.3s ease-in 0s;
    cursor: pointer;
    border: none;
}
a.orangebutton.big,
.orangebutton.big{
    padding: 18px 54px;
    font-size: 14px;
    font-weight: bold;
}
a.orangebutton:hover,
.orangebutton:hover{
    background-color: #4c4d4f;
}

@media screen and (max-width: 480px){

    .form-wrapper {
        width: 280px;
        padding: 10px;
    }
    .form-wrapper .line{
        margin-bottom: 8px;
    }

    .form-wrapper .line input {
        width: 280px;
    }

    .form-wrapper .title {
        font-size: 20px;
        min-height: 56px;
    }
}