.container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea,
#contact button[type="submit"] {
    font-size: 15px;
    font-family: roboto-light, sans-serif;
}

#contact {
    background: #F9F9F9;
    padding: 60px 35px;
    margin: 100px 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

fieldset {
    border: none;
    margin: 0 0 24px;
    min-width: 100%;
    padding: 0;
    width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea {
    width: 100%;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #ccc;
    background: #f7f7f7;
    margin: 0 0 5px;
    padding: 10px 10px 10px 0;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border-bottom: 1px solid #aaa;
}

#contact textarea {
    resize: none;
    height: 40px;
}

#contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #f59e00;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    height: 45px;
    font-size: 16px;
}

#contact button[type="submit"]:hover {
    background: #d98a01;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contact input:focus,
#contact textarea:focus {
    outline: 0;
    border: 1px solid #a8a8a8;
}

::-webkit-input-placeholder {
    color: #a8a8a8;
}

:-moz-placeholder {
    color: #a8a8a8;
}

::-moz-placeholder {
    color: #a8a8a8;
}

:-ms-input-placeholder {
    color: #a8a8a8;
}