/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}



html,
body {
    min-height: 100vh;
}

@media (hover: none) and (pointer: coarse) {
    /* Viewport height fix for mobile browsers */
    html,
    body {
        min-height: -webkit-fill-available;
    }

    /* Specific fix for browsers on devices with screen notches (e.g. iPhone X) */
    html {
        padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    }
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    color: #eee;
    font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #000 linear-gradient(to bottom, #000 0%, #666 100%) repeat 50% 0;
}

.wrapper {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding: 16px;
}


.header {
    position: relative;
    flex: 0 1 auto;
    background: #2a2b2a;
    background-size: auto 100%;
    border-bottom: 5px solid #ef7f1c;
}

.wrapper--header {
    padding-top: 8px;
    padding-bottom: 8px;
}

.logo {
    clear: both;
    display: block;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
}

.logo > img {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}   

.main {
    flex: 1 1 auto;
}

.login {
    clear: both;
    display: block;
    max-width: 545px;
    margin: 0 auto;
    padding: 8px;
    font-size: 1.125em;
    background-color: rgba(14, 25, 57, 0.5);
    border-radius: 8px;
    animation: 1.5s ease 0s 1 normal both running loginFadeIn;
}

@keyframes loginFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.25, 0.25);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

.login__intro {
    display: block;
    max-width: 100%;
    margin-right: auto;
    margin-bottom: 12px;
    margin-left: auto;
    border-radius: 6px;
}

.login__form + .login__intro {
    margin-top: 12px;
    margin-bottom: 0;
}

.login > h2 {
    margin-top: 0;
    margin-bottom: 0.5em;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875em;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
}

.login__item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    border-radius: 6px;
}

.login__item:not(.login__item--error) + .login__item {
    margin-top: 12px;
}

.login__item--error {
    display: none;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #f44;
    text-align: center;
}

.login__item--error > span {
    padding-left: 10px;
    font-size: 0.875em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}

.login__item--submit {
    color: rgba(255, 255, 255, 0.875);
    fill: rgba(255, 255, 255, 0.875);
}

.login__label {
    position: absolute;
    top: 0;
    left: 0;
    order: -1;
    display: flex;
    flex: 0 1 auto;
    width: 48px;
    height: 48px;
    padding: 4px;
    color: rgba(148, 148, 5, 0.875);
    fill: rgba(148, 148, 5, 0.875);
    font-weight: 600;
    text-align: center;
    background-color: #ddd;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    cursor: pointer;
    transition: color 0.4s ease, fill 0.4s ease, background-color 0.4s ease;
}

.login__input:hover ~ .login__label,
.login__input:focus ~ .login__label {
    color: #182b63;
    fill: #182b63;
    background-color: #fff;
}

.login__item--error .login__label {
    position: static;
    height: 32px;
    background-color: transparent;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.login__icon {
    display: block;
    flex: 0 1 auto;
    margin: auto;
    font-size: 1.5em;
}

.login__item--error .login__icon {
    color: #f44;
    fill: #f44;
}

.login__item--submit .login__icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    margin-right: 12px;
    margin-left: 12px;
    color: inherit;
    fill: inherit;
}

.login__description {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    text-indent: 150%;
    white-space: nowrap;
}

.login__input,
.login__submit {
    outline: none;
}

.login__input {
    flex: 1 1 auto;
    width: 100%;
    min-height: 48px;
    padding: 12px 12px 12px 56px;
    color: rgba(0, 0, 0, 0.75);
    background-color: #ddd;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.login__input:hover,
.login__input:focus,
.login__input:active {
    color: #000;
    background-color: #fff;
}

.login__input:hover,
.login__input:focus,
.login__submit:hover,
.login__submit:focus {
    box-shadow: 0 0 6px 2px rgba(255, 102, 0, 0.75);
}

.login__input::-webkit-input-placeholder {
    color: rgba(148, 148, 5, 0.67);
}
.login__input:-ms-input-placeholder {
    color: rgba(148, 148, 5, 0.67);
}
.login__input::placeholder {
    color: rgba(148, 148, 5, 0.67);
}

.login__input:focus::-webkit-input-placeholder {
    color: rgba(148, 148, 5, 0.67);
}
.login__input:focus:-ms-input-placeholder {
    color: rgba(148, 148, 5, 0.67);
}
.login__input:focus::placeholder {
    color: rgba(148, 148, 5, 0.67);
}

.login__submit {
    display: flex;
    flex: 1 1 auto;
    padding: 10px 16px 10px 56px;
    color: inherit;
    font-size: 1.25em;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #0e1939;
    background-image: linear-gradient(to bottom, #182b63 0%, #0e1939 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s ease-in-out;
}

.login__submit:hover,
.login__submit:focus {
    background-color: #182b63;
    background-image: linear-gradient(to bottom, #223c8c 0%, #182b63 100%);
}

.login__submit:active {
    background-color: #223c8c;
    background-image: linear-gradient(to bottom, #182b63 0%, #223c8c 100%);
}

.login label.error {
    flex: 1 1 100%;
    padding: 8px;
    color: #f44;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}

.banner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    margin-top: 0px;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    align-items: flex-start;
}

.banner > iframe,
.banner > img {
    flex: 0 1 auto;

    display: block;
    max-width: 100%;
    margin-top: 8px;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}


.footer {
    flex: 0 1 auto;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    background-color: #000;
    border-top: 5px solid #ef7f1c;
}

.wrapper--footer {
    padding-bottom: 20px;
}

.copyright {
    margin-top: 0;
    margin-bottom: 0;
}