html,body{
    font-family: "Open Sans", sans-serif;
    height: 100%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    line-height: 1;
    margin: 0;
    padding: 0;
    vertical-align: baseline
}
#main-container{
    display: flex;
    width: 100%;
    height: 100%;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 15px;
    line-height: 24px;
    background-color: #fff;
}
.header{
    margin: 20px
}
.form{
    margin: 20px 20px
}
.form h2{
    margin-bottom: 28px;
    font-size: 32px;
    font-weight: bold;
}

.field.text input {
    outline: none;
    display: block;
    background: #fff;
    width: 100%;
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 20px 20px;
    color: #4F5464;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    transition: 0.3s ease;
    box-shadow: 0 0 0 2px #dcdcdc;
}
.field.text input:hover{
    box-shadow: 0 0 0 2px #b6b6b6;
}
.field.text input:focus{
    border-color: #377DB8;
    box-shadow: 0 0 0 2px #377DB8;
}

.field.text{
    margin-bottom: 24px;
}
.field.text .left{
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}
.btn-toolbar{
    margin-top: 10px;
}
.btn-toolbar .action{
    cursor: pointer;
    outline: none;
    display: block;
    background: #377DB8;
    width: 100%;
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 16px 20px;
    color: #fff;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    transition: 0.3s ease;
}
.btn-toolbar .action:hover{
    background: #1a5f99;
}

.footer{
    margin: 20px;
    font-size: 14px;
    color: #acacac;
}
.footer a {
    color: #acacac;
}
.footer a:hover {
    color: #616060;
}
.art{
    background: #0167B4;
    position: relative;
    display: none;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
@media (min-width: 600px){
    .art {
        display: flex;
    }
    .form{
        margin: 20px 60px
    }
}
.art .foreground{
    width: 80%;
    max-width: 400px;
}
.art .tagline-container{
    position: absolute;
    right: 0;
    bottom: 34px;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 10px;
}
.art .tagline-container .tagline{
    max-width: 340px;
    margin: 0 auto;
    padding: 8px 12px;
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    background-color: rgba(38,50,56,.25);
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.title-box{
    display: flex;
    align-items: center;
    margin: 20px 20px
}
.title-box .logo{
    text-align: center;
    width: 48px;
    height: 48px;
    background-color: #0167B4;
    padding: 10px;
    border-radius: 5px;
}
.title-box .title{
    margin-left: 20px;
    font-size: 21px;
    font-weight: bold;
    color: #0167B4;
}
.title-box .subtitle{
    font-size: 14px;
    font-weight: lighter;
    line-height: 30px;
}
.message.bad{
    border-radius: .25rem;
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
}