body, html, h2, form, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 14px;
}

body {
    background-color: #F5F5F0;
    font-family: 'Raleway', sans-serif;
}

ul, li {
    list-style-type: none;
}

.msg {
    width: 90%;
    max-width: 1000px;
    line-height: 22px;
    background-color: #FFF;
    font-size: 15px;
    text-align: center;
    margin: 10px auto;
    padding: 10px 5px;
    border: 1px solid #f0efef;
    box-shadow: 0 6px 16px 6px #f0efef;
    -webkit-box-shadow: 0 6px 16px 6px #f0efef;
}

.msg h2 {
    font-size: 22px;
    color: #006600;
    margin-bottom: 15px;
}

.msg a {
    color: #3366FF;
    text-decoration: none;
}

.msg a:hover {
    text-decoration: underline;
}

input {
    background-color: #EEECEC;
    border: 1px solid #DDDDDD;
    display: block;
    padding: 10px 15px;
    width: 60%;
    margin: 0 auto 5px auto;
    transition-duration: 0.35s;
    -webkit-transition-duration: 0.35s;
}

button {
    cursor: pointer;
    color: #fff;
    background-color: #26292c;
    border: 0;
    padding: 8px 20px;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}

button:hover {
    background-color: #e14d43;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}

input:focus {
    background-color: #fff;
    border: 1px solid #5B9DD9;
    box-shadow: rgba(30, 140, 190, 0.804) 0px 0px 2px 0px;
    -webkit-box-shadow: rgba(30, 140, 190, 0.804) 0px 0px 2px 0px;
    transition-duration: 0.35s;
    -webkit-transition-duration: 0.35s;
}

.success {
    font-size: 14px;
    background-color: #009900;
}

.error {
    font-size: 14px;
    background-color: #e50000;
}

.success, .error {
    font-weight: 800;
    color: #FFF;
    padding: 12px 10px;
    margin-bottom: 15px;
}

@media (max-width: 850px){

.msg {
    width: 95%;
}

input {
    width: 90%
}

}