html {
    box-sizing: border-box;
}
*, :after, :before {
    box-sizing: inherit;
}
body{
    font-family: 'Roboto', sans-serif;
    margin:0;
    padding:0;
    border:0;
}
body{
    background:#f1f1f1;
    color:#222;
}
a{
    color:#2196f3;
    text-decoration: none;
}
.container{
    margin:25px auto;
    max-width: 800px;
}
.card{
    padding:8px 18px;
    box-shadow: 0 0 3px 7px rgba(0,0,0,0.02);
    background: #fff;
}
.card.image{
    padding: 0;
}
.card.image > img{
    display: block;
    width: 100%;
    height: auto;
}
.card > .content{
    padding:8px 18px;
}
.card > .content b{
    color:#555;
}
.container small{
    color:#444;
}
.form{
    position: relative;
    max-width: 100%;
}
.form .field {
    clear: both;
    margin: 0 0 1em;
}
.form .field>label{
    display: block;
    margin: 0 0 0.28571429rem 0;
    color: rgba(0,0,0,.87);
    font-size: .92857143em;
    font-weight: 700;
    text-transform: none;
}
.form .field .helper-text{
    color: #999;
    font-size: 13px;
}
.form .field input,
.form .field select{
    font-family: Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;
    margin: 0;
    outline: 0;
    -webkit-appearance: none;
    tap-highlight-color: rgba(255,255,255,0);
    line-height: 1.21428571em;
    padding: 0.67857143em 1em;
    font-size: 1em;
    background: #fff;
    border: 1px solid rgba(34,36,38,.15);
    color: rgba(0,0,0,.87);
    border-radius: 0.28571429rem;
    box-shadow: 0 0 0 0 transparent inset;
    transition: color .1s ease,border-color .1s ease;
    width: 100%;
}
.form .button{
    background-color: #2185d0;
    color: #fff;
    text-shadow: none;
    box-shadow: 0 0 0 0 rgb(34 36 38 / 15%) inset;
    background-image: none;
    cursor: pointer;
    display: inline-block;
    min-height: 1em;
    outline: 0;
    border: none;
    vertical-align: baseline;
    font-family: Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;
    margin: 0 0.25em 0 0;
    padding: 0.78571429em 1.5em 0.78571429em;
    text-transform: none;
    font-weight: 700;
    line-height: 1em;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    border-radius: 0.28571429rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: opacity .1s ease,background-color .1s ease,color .1s ease,box-shadow .1s ease,background .1s ease;
    will-change: '';
    -webkit-tap-highlight-color: transparent;
}
.form .button:hover {
  background-color: #1678c2;
  color: #FFFFFF;
  text-shadow: none;
}

.form .button:focus {
  background-color: #0d71bb;
  color: #FFFFFF;
  text-shadow: none;
}

.form .button:active {
  background-color: #1a69a4;
  color: #FFFFFF;
  text-shadow: none;
}

.form .active.button,
.form .button .active.button:active {
  background-color: #1279c6;
  color: #FFFFFF;
  text-shadow: none;
}

.form .field>.labeled{
    display: flex;
}
.form .field>.labeled .label{
    display: inline-block;
    line-height: 1;
    vertical-align: baseline;
    margin: 0 0.14285714em;
    background-color: #e8e8e8;
    background-image: none;
    padding: 0.5833em 0.833em;
    color: rgba(0,0,0,.6);
    text-transform: none;
    font-weight: 700;
    border: 0 solid transparent;
    border-radius: 0.28571429rem;
    transition: background .1s ease;
    flex: 0 0 auto;
    margin: 0;
    font-size: 1em;
    padding-top: 0.78571429em;
    padding-bottom: 0.78571429em;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.form .field .labeled>input{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}
.message{
    position: relative;
    min-height: 1em;
    margin: 1em 0;
    background: #f8f8f9;
    padding: 1em 1.5em;
    line-height: 1.4285em;
    color: rgba(0,0,0,.87);
    transition: opacity .1s ease,color .1s ease,background .1s ease,box-shadow .1s ease;
    border-radius: 0.28571429rem;
    box-shadow: 0 0 0 1px rgb(34 36 38 / 22%) inset, 0 0 0 0 transparent;
    font-size: 1em;
}
.red.message {
    background-color: #ffe8e6;
    color: #db2828;
    box-shadow: 0 0 0 1px #db2828 inset, 0 0 0 0 transparent;
}
.yellow.message{
    background-color: #fff8db;
    color: #b58105;
    box-shadow: 0 0 0 1px #b58105 inset, 0 0 0 0 transparent;
}
.green.message{
    background-color: #e5f9e7;
    color: #1ebc30;
    box-shadow: 0 0 0 1px #1ebc30 inset, 0 0 0 0 transparent;
}
.header{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1em;
}
.header .logo{
    width:80px;
}
.header .title{
    margin:0;
    font-size: 28px;
    color:#444;
}
h3.title{
    text-align: center;
    margin:0 0 1em;
    font-size: 26px;
    font-weight: bold;
    color:#555;
}
.grid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0;
    margin:-1em;
}
.grid.two>div{
    padding: 1em;
    width: 50%;
    display: inline-block;
    vertical-align: top;
}
@media (max-width:900px){
    .grid{
        margin: 0;
    }
    .grid.two>div{
        width: 100%;
        padding:0;
    }
}
.label {
    display: inline-block;
    line-height: 1;
    vertical-align: baseline;
    margin: 0.2em .3em .5em 0;
    background-color: #e8e8e8;
    background-image: none;
    padding: 0.5833em 0.833em;
    color: rgba(0,0,0,.6);
    text-transform: none;
    font-weight: 700;
    border: 0 solid transparent;
    border-radius: 0.28571429rem;
    transition: background .1s ease;
    font-size: .78571429rem;
}
.teal.label {
    background-color: #00b5ad!important;
    border-color: #00b5ad!important;
    color: #fff!important;
}
.yellow.label {
    background-color: #eaae00!important;
    border-color: #eaae00!important;
    color: #fff!important;
}
.red.label {
    background-color: #db2828!important;
    border-color: #db2828!important;
    color: #fff!important;
}

footer{
    text-align: center;
    margin-bottom: 1em;
}
footer span{
    color:#555;
    font-size:15px;
}