.form_style{
    max-width: 1300px;
    padding: 10px 20px;
    background: #f4f7f8;
    margin: 10px auto;
    padding: 20px;
    border-radius: 8px;
    font-family: "Helvetica Neue", "Open Sans", Arial, sans-serif;
    overflow: auto;
}
.form_style legend {
    font-size: 1em;
    margin-bottom: 10px;
}
.form_style label {
    display: block;
    margin-bottom: 8px;
}
.form_style input[type="text"],
.form_style input[type="date"],
.form_style input[type="datetime"],
.form_style input[type="email"],
.form_style input[type="number"],
.form_style input[type="search"],
.form_style input[type="time"],
.form_style input[type="url"],
.form_style textarea,
.form_style select {
   font-family: "Helvetica Neue", "Open Sans", Arial, sans-serif;
    background: rgba(255,255,255,.1);
    border: none;
    border-radius: 4px;
    font-size: 12px;
    margin: 0;
    outline: 0;
    padding: 3px;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background-color: #e8eeef;
    color:#8a97a0;
    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
    box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
    margin-bottom: 10px;
   
}
.form_style input[type="text"]:focus,
.form_style input[type="date"]:focus,
.form_style input[type="datetime"]:focus,
.form_style input[type="email"]:focus,
.form_style input[type="number"]:focus,
.form_style input[type="search"]:focus,
.form_style input[type="time"]:focus,
.form_style input[type="url"]:focus,
.form_style textarea:focus,
.form_style select:focus{
    background: #d2d9dd;
    color: var(--color-primary);
}
.form_style select{
    -webkit-appearance: menulist-button;
    height:30px;
}
.form_style .number {
    background: var(--color-primary);
    color: #fff;
    height: 30px;
    width: 30px;
    display: inline-block;
    font-size: 0.8em;
    margin-right: 4px;
    line-height: 30px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
    border-radius: 15px 15px 15px 0px;
}

.form_style input[type="submit"],
.form_style input[type="button"]
{
    position: relative;
    display: block;
    padding: 9px 29px 18px 29px;
    color: #113825;
    margin: 0 auto;
    background: #cccccc; /* Old browsers */
    background: -moz-linear-gradient(top,  #cccccc 0%, #ffffff 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #cccccc 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #cccccc 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    font-size: 16px;
    text-align: center;
    font-style: normal;
    width: 35%;
    border: 1px solid;
    border-width: 1px 1px 3px;
    margin-bottom: 10px;
    height: 50px;
    
}
.form_style input[type="submit"]:hover,
.form_style input[type="button"]:hover
{
    color: #9b0018;
}


.form_complete {
    width:600px;
    height:200px;
    padding:10px;
    border:10px 
    outset #cccccc;
    margin: 0 auto;
    text-align: center;
    width: 30em;
    background: #cccccc; /* Old browsers */
    background: -moz-linear-gradient(top,  #cccccc 0%, #ffffff 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #cccccc 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #cccccc 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.form_complete input[type="submit"],
.form_complete input[type="button"]
{
    position: relative;
    display: block;
    padding: 0px 0px 0px 0px;
    color: #113825;
    margin: 0 auto;
    background: #cccccc; /* Old browsers */
    background: -moz-linear-gradient(top,  #cccccc 0%, #ffffff 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #cccccc 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #cccccc 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    font-style: normal;
    width: 50%;
    border: 1px solid;
    border-width: 1px 1px 3px;
    margin-bottom: 10px;
    height: 50px;
}
.form_complete input[type="submit"]:hover,
.form_complete input[type="button"]:hover
{
    color: #9b0018;
}
.error{
    color: #FF0000;
    }