#form {
  text-align: center;
    background: #fff;
    color: #7b8993;
    font: 300 87.5%/1.5em 'Open Sans', sans-serif;
}

#form .form-item {
    margin-bottom: 10px;
    width: 500px;
}

#form .form-item input {
    border: 1px solid #ccc;
    border-radius: 2px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    height: 40px;
    padding: 0 16px;
    transition: background 0.3s ease-in-out;
    width: 100%;
}

#form .form-item input:focus {
    outline: none;
    border-color: #da251c;
    box-shadow: 0 0 10px #da251c;
}

#form .form-content {
    margin-bottom: 10px;
    width: 500px;
}

#form .form-content textarea {
    border: 1px solid #ccc;
    border-radius: 2px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    height: 200px;
    padding: 10px 16px;
    transition: background 0.3s ease-in-out;
    width: 100%;
}

#form .form-content textarea:focus {
    outline: none;
    border-color: #da251c;
    box-shadow: 0 0 10px #da251c;
}


#form .button-panel {
    margin: 20px 0 0;
    width: 530px;
}

#form .button-panel .button {
    -webkit-appearance: none;
    background: #da251c;
    border: none;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    height: 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out;
    width: 100%;
}

#form .button:hover {

    background: #e1443d;
}

