*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

form {

    max-width: 300px;
    margin: 0 auto;
    padding: 10px 20px;
    background: #f4f7f8;
    border-radius: 8px;
}

h1 {
    color: #384047;
    margin: 0 0 30px 0;
    text-align: center;
}

input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea, select {
    color: #384047;
    border: none;
    font-size: 16px;
    height: auto;
    outline: 0;
    padding: 8px 15px;
    width: 100%;
    background-color: #e8eeef;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
    margin-bottom: 10px;
}

input[type="radio"], input[type="checkbox"] {
    margin: 0 4px 8px 0;
}

select {
    color: #384047;
    padding: 6px;
    height: 32px;
    border-radius: 2px;
}

button {
    padding: 5px 20px;
    color: #FFF;
    /*background-color: #4bc970;*/
    background-color: #153f9c;
    font-size: 18px;
    text-align: center;
    font-style: normal;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
}
button:disabled,
button[disabled]{
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}
fieldset {
    margin-bottom: 20px;
    border: none;
}

legend {
    font-size: 1.4em;
    margin-bottom: 10px;
}

label {
    color: #384047;
    display: block;
    margin-bottom: 8px;
}

label.light {
    font-weight: 300;
    display: inline;
}

.number {
    background-color: #5fcf80;
    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: 100%;
}

.g-recaptcha {
    margin-top: 15px;
}

.g-recaptcha > div {
    margin: 0 auto;
}

@media screen and (min-width: 480px) {

    form {
        max-width: 480px;
    }

}

#main {
    background-color: #E4F1F1;
}
