/** Load Fonts **/
@font-face {
    font-family: 'Source Sans';
    src: url("fonts/sourcesanspro-regular-webfont.eot");
    src: 
        url("fonts/sourcesanspro-regular-webfont.eot?#iefix") format("embedded-opentype"), 
        url("fonts/sourcesanspro-regular-webfont.woff") format("woff"), 
        url("fonts/sourcesanspro-regular-webfont.ttf") format("truetype"), 
        url("fonts/sourcesanspro-regular-webfont.svg") format("svg");
    font-weight: normal;
    font-style: normal; }

@font-face {
    font-family: 'Source Sans';
    src: url("fonts/sourcesanspro-bold-webfont.eot");
    src: url("fonts/sourcesanspro-bold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/sourcesanspro-bold-webfont.woff") format("woff"), url("fonts/sourcesanspro-bold-webfont.ttf") format("truetype"), url("fonts/sourcesanspro-bold-webfont.svg") format("svg");
    font-weight: bold;
    font-style: normal; }

/** Password Protected Pages **/
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
input,
button {
    color: #565e5b;
    font: 100%/1.45 "Source Sans", "Helvetica Neue", Arial, sans-serif;
    min-width: 0;
}

body {
    text-align: center;
    margin: 0;
    background-color: #f1f5f6;
}

.global-password {
    position: relative;
    top: 3em;
    height: auto;
    width: 90%;
    max-width: 30em;
    margin: 0 auto;
    background-color: white;
    border: none;
    border-radius: .375em;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15)
}

.global-password__breadcrumb {
    padding: .5rem 1rem;
    font-size: .9375rem;
    background-color: #eceeed;
}

.global-password__breadcrumb-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.global-password__breadcrumb-list li {
    display: inline-block;
    position: relative;
    padding-right: 1.5em;
}

.global-password__breadcrumb-list li:after {
    content: '';
    display: block;
    position: absolute;
    top: .5em;
    right: .6em;
    width: .5em;
    height: .5em;
    border-right: 1px solid #909a96;
    border-top: 1px solid #909a96;
    transform: rotate(45deg);
}

.global-password__breadcrumb-list li:last-child {
    padding-right: 0;
}
.global-password__breadcrumb-list li:last-child:after {
    display: none;
}

.global-password__title {
    margin: 0;
    padding: 2rem 1rem .25rem;
    font-size: 1.25rem;
}

.global-password__form {
    padding: 0 1rem;
}

.global-password__field {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: .25rem 0;
}

.global-password__field-icon {
    margin: .25rem;
}

.global-password__field [type='password'] {
    border: 1px solid #dde0e1;
    border-radius: .375em;
    padding: 0.325em 0.75em 0.35em;
    height: 2.5em;
    max-width: 100%;
    margin: .25rem;
}

.global-password__field [type='password']:focus {
    border: 1px solid hsl(182deg, 70%, 40%);
    background-color: white;
    outline: hsl(182deg, 90%, 70%) solid;
}

.global-password__field [type='submit'] {
    border: 2px solid rgba(0, 0, 0, 0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    -webkit-font-smoothing: antialiased;
    border-radius: 0.375rem;
    background-color: hsl(182deg, 70%, 30%);
    color: white;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-left: .125em;
    padding: 0.4rem 0.75rem 0.375rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    top: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: normal;
    text-transform: capitalize;
}

.global-password__field [type='submit']:hover,
.global-password__field [type='submit']:focus {
    background-color: hsl(182deg, 70%, 40%);
    color: white;
    text-decoration: none;
}

.global-password__field [type='submit']:focus {
    outline: hsl(182deg, 90%, 70%) solid;
}

.global-password__field [type='submit']:active {
    outline: none;
    background-color: hsl(182deg, 70%, 25%);
}

.global-password__note {
    padding: 1rem;
}