@import url('//fonts.googleapis.com/css?family=Roboto:300,300i');

html, body {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Roboto', sans-serif;
}

input, textarea, select, button {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: normal;
}

h1 {
    font-weight: normal;
    font-size: 1.8em;
}

#registration-container {
    width: 500px;
    min-height: 500px;
    margin: 50px auto;
    background-color: #f2f2f2;
    text-align: center;
    padding-bottom: 10px;
}

#banner {
    margin-top: 50px;
}

#registration-container input[type="text"], #registration-container input[type="password"], #registration-container button {
    display: block;
    clear: both;
    width: 400px;
    margin: 1em auto;
    min-height: 30px;
    padding: 5px 15px;
    font-size: large;
}

.registration-error {
    color: red;
    font-size: large;
    font-weight: bold;
}

#registration-container span.error {
    color: red;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

#registration-container span.success {
    color: green;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

ol, ul {
    list-style: none;
    font-size: 12px;
    color: red;
    margin-top: 10px;
    padding-left: 0;
}