@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 300;
    src: local('Source Sans Pro Light'), local('SourceSansPro-Light'),
        url(fonts/SourceSansPro-Light.woff) format('woff');
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: local('Source Sans Pro'), local('SourceSansPro-Regular'),
        url(fonts/SourceSansPro-Regular.woff) format('woff');
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    src: local('Source Sans Pro Semibold'), local('SourceSansPro-Semibold'),
        url(fonts/SourceSansPro-Semibold.woff) format('woff');
}

:root { -
    -link-color: #4199fd; -
    -button-color: #60a9fd; -
    -button-color-hover: #4199fd; -
    -error-color: #ef1e1e; -
    -error-color-bknd: #fff5f5; -
    -meter-red: #aaaaaa; -
    -meter-green: green; -
    -meter-strength0: #d22f2c; -
    -meter-strength1: #D2690F; -
    -meter-strength2: #d8c107; -
    -meter-strength3: #a5bb07; -
    -meter-strength4: #0fa20b;
}

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, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 300;
    background: #f4f4f4;
}

.outer {
    box-sizing: border-box;
    position: relative;
    height: 100%;
}

.outer .inner {
    width: 400px;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    margin-left: -200px;
    top: 20%;
}

@media only screen and (max-height: 900px) {
    .outer .inner {
        top: 5%;
    }
}

.outer .inner .logo {
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 25px;
}

.outer .inner .logo img {
    max-width: 80%;
}

.outer .inner .box {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    border-radius: 2px;
    text-align: center;
    padding: 40px;
    margin-bottom: 40px;
}

.outer .inner .box h1 {
    margin: 0;
    text-align: center;
    font-weight: 600;
    padding: 0 0 30px 0;
    color: #333;
    font-size: 1.1em;
}

.outer .inner .box h2 {
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.outer .inner .box p {
    padding: 0 20px;
    font-size: 0.95em;
}

.outer .inner .box p.message {
    padding: 0;
    margin-bottom: 40px;
    font-size: 0.95em;
}

.outer .inner .box p.message a {
    text-decoration: none;
    cursor: pointer;
}

.outer .inner .box p.message a:hover {
    text-decoration: underline;
}

.outer .inner .box p strong {
    font-weight: 600;
}

.outer .inner .box p strong.full {
    display: block;
    font-size: 1.3em;
    margin: 10px 0;
}

.outer .inner .box p strong.full a {
    display: block;
    font-size: 0.7em;
    font-weight: 300;
}

.outer .inner .box fieldset {
    display: inline-block;
    width: 100%;
}

fieldset .field {
    display: flex;
    flex-flow: column-reverse;
    margin-bottom: 2.5em;
}

fieldset .line {
    margin-bottom: 1.5em;
}

fieldset .field.left {
    float: left;
    width: 48%;
}

fieldset .field.right {
    float: right;
    width: 48%;
}

fieldset .field.compact {
    margin-bottom: 1.5em;
}

fieldset .field.tight {
    margin-bottom: 0.5em;
}

/******************************************************
* Floating labels
*******************************************************/
fieldset .field {
    display: block;
    position: relative;
}

fieldset .field label {
    position: absolute;
    left: 0;
    top: 0;
    cursor: text;
    opacity: 1;
    font-size: 0.95em;
    color: #999;
    font-weight: 300;
    /*letter-spacing: 0.025em;*/
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

fieldset .field.error label {
    color: #ef1e1e;
}

fieldset .field label em {
    margin-right: 4px;
}

fieldset .field input {
    font-size: 1.1em;
    border: 0;
    border-bottom: 2px solid #60a9fd;
    font-family: inherit;
    -webkit-appearance: none;
    border-radius: 0;
    padding: 4px 0;
    padding-top: 1.4em;
    cursor: text;
    outline: none;
    width: 100%;
}

fieldset .field input:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.5);
}

fieldset .field.error input {
    border-bottom-color: #ef1e1e;
    color: #ef1e1e !important;
}

fieldset .field input:focus {
    outline: 0;
    border-bottom: 2px solid #60a9fd;
}

fieldset .field.error input:focus {
    border-bottom-color: #ef1e1e;
    color: #ef1e1e !important;
}

fieldset .field input:-ms-input-placeholder {
    opacity: 0.6;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 0.9em;
    font-weight: 300;
}

fieldset .field.noplaceholder input:-ms-input-placeholder {
    opacity: 0;
}

fieldset .field input::-webkit-input-placeholder {
    opacity: 0.6;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 0.9em;
    font-weight: 300;
}

fieldset .field input::placeholder {
    opacity: 0.6;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 0.9em;
    font-weight: 300;
}

fieldset .field input:placeholder-shown:not(:focus)::-webkit-input-placeholder {
    opacity: 0;
}

fieldset .field.noplaceholder input:-webkit-input-placeholder {
    opacity: 0;
}

fieldset .field input:placeholder-shown:not(:focus):-ms-input-placeholder {
    opacity: 0;
}

fieldset .field.noplaceholder input:-ms-input-placeholder {
    opacity: 0;
}

fieldset .field input:placeholder-shown:not(:focus)::-ms-input-placeholder {
    opacity: 0;
}

fieldset .field.noplaceholder input::-ms-input-placeholder {
    opacity: 0;
}

fieldset .field input:placeholder-shown:not(:focus)::placeholder {
    opacity: 0;
}

fieldset .field.noplaceholder input::placeholder {
    opacity: 0;
}

fieldset .field input:placeholder-shown:not(:focus) +* {
    font-size: 105%;
    opacity: 0.8;
    top: 1.1em;
}

fieldset .field input:placeholder-shown:not(:focus) {
    border-bottom-color: #999;
}

input:-webkit-autofill, input:-webkit-autofill:focus {
    background-color: #fff !important;
    -webkit-box-shadow: inset 0 0 0px 9999px white;
}

fieldset field.error input:-webkit-autofill {
    color: #ef1e1e !important;
}

/******************************************************
* Other
*******************************************************/
.errorMessage {
    color: #ef1e1e;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 1em;
    background: #fff5f5;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #ef1e1e;
    border-radius: 2px;
}

.actions {
    margin: 20px 0;
}

.actions>span {
    margin-right: 20px;
}

a {
    color: #4199fd;
    text-decoration: none;
    font-weight: inherit;
}

p.links a {
    font-weight: 400;
}

.actions a {
    font-weight: 400;
}

a:hover {
    text-decoration: underline;
}

a.button {
    display: inline-block;
    background: #60a9fd;
    width: 150px;
    padding: 10px 0;
    border-radius: 2px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

a.button span {
    font-weight: inherit;
    font-size: inherit;
}

a.button em {
    display: none;
    font-size: 1.2em;
    padding: 1px;
}

a.button.disabled {
    opacity: 0.4;
}

a.button:hover {
    background: #4199fd;
    cursor: pointer;
}

a.button.disabled:hover {
    background: #60a9fd;
    cursor: default;
}

a.button.loading em {
    display: inline-block;
}

a.button.loading span {
    display: none;
}

a.button.loading:hover {
    background: #60a9fd;
    cursor: default;
}

fieldset .field .meter {
    text-align: left;
    height: 1em;
    font-size: 0.9em;
    padding-top: 2px;
    position: relative;
}

fieldset .field .meter span {
    margin-right: 8px;
}

fieldset .field .meter span em {
    font-size: 0.95em;
    width: 1em;
}

fieldset .field .meter span.yes {
    color: green;
}

fieldset .field .meter span.no {
    color: #aaaaaa;
}

fieldset .field .meter span.strength {
    position: absolute;
    right: -8px;
    top: 6px;
}

fieldset .field .meter span.strength .item {
    margin-right: 1px;
    display: inline-block;
    border: 1px solid #999;
    width: 1em;
    height: 0.5em;
}

fieldset .field .meter span.strength0 .item.active {
    background: #d22f2c;
    border-color: #d22f2c;
}

fieldset .field .meter span.strength1 .item.active {
    background: #D2690F;
    border-color: #D2690F;
}

fieldset .field .meter span.strength2 .item.active {
    background: #d8c107;
    border-color: #d8c107;
}

fieldset .field .meter span.strength3 .item.active {
    background: #a5bb07;
    border-color: #a5bb07;
}

fieldset .field .meter span.strength4 .item.active {
    background: #0fa20b;
    border-color: #0fa20b;
}

.tabset {
    list-style: none;
    margin-top: -40px;
    margin-left: -40px;
    margin-right: -40px;
    margin-bottom: 40px;
}

.tabset li {
    width: 49%;
    padding: 20px;
    box-sizing: border-box;
    background: #f0f0f0;
}

.tabset li.active {
    background: #fff;
}

.tabset li.left {
    float: left;
}

.tabset li.right {
    float: right;
}

.tabset li a {
    font-size: 1.25em;
    color: #333;
}

.tabset li a:hover {
    text-decoration: none;
}

.body {
    display: none;
}

.body.active {
    display: block;
}

.hidden {
    display: none !important;
}

.clear {
    clear: both;
}