.hero form {
    width: 460px;
    background-color: rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    padding: 20px 25px 15px;
}
form span {
    position: relative;
    display: inline-block;
    width: 100%;
}
form span.half {
    width: 195px;
}
form .select {
    width: 100%;
    height: 35px;
    border-radius: 2px;
    margin-bottom: 15px;
    border: 1px solid #384b76;
    background-color: #fff;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
form .select > select {
    height: 33px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 7px;
    border: none;
    width: 100%;
    color: #384b76;
    font-size: 1.6em;
}
form .select > select:focus {
    box-shadow: none;
    outline: none;
}
form .select > select+label {
    cursor: pointer;
    width: 50px;
    height: 35px;
    z-index: 55;
    position: absolute;
    text-align: center;
    color: #fff;
    font-size: 12px;
    display: inline-block;
    border-right: 1px solid transparent;
    top: 0;
    right: 0;
    background: #384b76 url('../img/dropdown.png') no-repeat center center;
}
form .select_city {
    width: 195px;
}
form .select_city > select {
    border: none;
    left: 50px;
    width: 180px;
    color: #384b76;
}
form .select > select:focus {
    box-shadow: none;
    outline: none;
}
form .select_city > select+label {
    cursor: pointer;
    width: 50px;
    height: 35px;
    z-index: 55;
    position: absolute;
    text-align: center;
    color: #fff;
    font-size: 12px;
    background: #384b76;
    display: inline-block;
    border-right: 1px solid transparent;
    top: 0;
    left: 0;
    line-height: 33px;
}
form input[type="text"] {
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 2px;
    box-shadow: none;
    border: 1px solid #384b76;
    height: 35px;
    box-sizing: border-box;
    padding: 10px 10px 10px 60px;
    margin-bottom: 15px;
    color: #384b76;
    font-size: 1.6em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
form input[type="text"]+label {
    cursor: pointer;
    width: 50px;
    height: 35px;
    z-index: 55;
    position: absolute;
    text-align: center;
    color: #fff;
    font-size: 12px;
    background-color: #384b76;
    display: inline-block;
    border-right: 1px solid transparent;
    top: 0;
    left: 0;
    line-height: 33px;
    border-radius: 3px 0 0 3px;
}
form label.date {
    cursor: pointer;
    width: 50px;
    height: 35px;
    z-index: 55;
    position: absolute;
    text-align: center;
    color: #fff;
    font-size: 12px;
    background-color: #384b76;
    display: inline-block;
    border-right: 1px solid transparent;
    top: 0;
    left: 0;
    line-height: 33px;
    border-radius: 3px 0 0 3px;
    background-image: url('../img/calendar.png');
    background-repeat: no-repeat;
    background-position: center center;
}
form input[type="text"]:focus {
    color: #fff;
    background-color: #384b76;
    box-shadow: none;
    outline: none;
}
form input[type="text"]:focus+label {
    border-color: #fff;
}
form input[type="text"]::-webkit-input-placeholder {
    font-size: 12px;
    color: #b0b0b0;
    font-style: italic;
    font-family:'Open Sans', sans-serif;
}
form input[type="text"]:-moz-placeholder {
    /* Firefox 18- */
    font-size: 12px;
    color: #b0b0b0;
    font-style: italic;
    font-family:'Open Sans', sans-serif;
}
form input[type="text"]::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 12px;
    color: #b0b0b0;
    font-style: italic;
    font-family:'Open Sans', sans-serif;
}
form input[type="text"]:-ms-input-placeholder {
    font-size: 12px;
    color: #b0b0b0;
    font-style: italic;
    font-family:'Open Sans', sans-serif;
}
form input[type="text"]:focus::-webkit-input-placeholder {
    color: #fff;
}
form input[type="text"]:focus:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
}
form input[type="text"]:focus::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
}
form input[type="text"]:focus:-ms-input-placeholder {
    color: #fff;
}
input[type="submit"] {
    width: 100%;
    position: relative;
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #e81e3f;
    box-shadow: none;
    height: 35px;
    box-sizing: border-box;
    padding: 8px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    background-color: #e81e3f;
    font-size: 1.6em;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
input[type="submit"]:hover {
    color: #e81e3f;
    background-color: #fff;
}
input[type="submit"]:focus {
    border: 1px solid #e81e3f;
    outline: none;
}
form .date-wrap {
    overflow: hidden;
}
form textarea {
    font-family:'Open Sans', sans-serif;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    font-size: 1.4em;
    resize:vertical;
    color: #384b76;
    border: 1px solid #384b76;
    border-radius: 3px;
    margin-bottom: 15px;
}
form textarea:focus{
    outline: none;
}
form textarea::-webkit-input-placeholder {
    font-style: italic;
    color: #6f6c6c;
}
form textarea:-moz-placeholder {
    font-style: italic;
    color: #6f6c6c;
}
form textarea::-moz-placeholder {
    font-style: italic;
    color: #6f6c6c;
}
form textarea:-ms-input-placeholder {
    font-style: italic;
    color: #6f6c6c;
}
