@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;700&display=swap');



/*! 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;
    min-height: calc(var(--oneVh, 100vh) * 100);
}

@media (hover: none) and (pointer: coarse) {
    /* 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;
    color: #eee;
    font-family: "Barlow Semi Condensed", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #3868a2 url(../images/bg.jpg) no-repeat 50% -292px;
    background-size: 1000px 667px;
}

@media (min-width: 960px) {
    html {
        background-position: 50% -600px;
        background-size: auto;
    }
}

@media (min-width: 2000px) {
    html {
        background-position: 50% -30vw;
        background-size: cover;
    }
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    display: flex;
    flex-flow: column wrap;
}

.wrapper {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 16px;
}


.header {
    flex: 0 0 0;
    padding-top: 74px;
    margin-top: 0px;
    padding-bottom: -100px;
}

@media (min-width: 960px) {
    .header {
        padding-top: 144px;
    }
}

@media (min-width: 100px) {
    .header {
        padding-top: 0px;
    }
}


.logo {
    width: 233px;
    height: 164px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: block;
    
  }


.login {
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.125em;
}


.login__form {
    display: flex;
    flex-wrap: wrap;
    max-width: 546px;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 959px) {
    .login__form {
        margin-bottom: 16px;
    }
}

.login__item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-height: 48px;
    margin: 0 auto;
    animation: 1s ease 0s 1 normal both running animatedLoginItem;
    will-change: transform;
}

@keyframes animatedLoginItem {
    0% {
        transform: translateX(-100vw);
    }

    80% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}

.login__item:not(:last-of-type) {
    margin-bottom: 25px;
}

.login__item:nth-of-type(2) {
    animation-delay: 0.0625s;
}

.login__item:nth-of-type(3) {
    animation-delay: 0.125s;
}

.login__item:nth-of-type(4) {
    animation-delay: 0.1875s;
}

.login__item--error {
    display: none;
    justify-content: center;
    padding: 12px 12px 12px 48px;
    background-color: #f44;
    text-align: center;
}

.login__item--username,
.login__item--password {
    max-width: 50%;
}

@media (min-width: 480px) {
    .login__item--username,
    .login__item--password {
        max-width: 40%;
        max-width: calc(50% - 28px);
    }
}

.login__item--username {
    padding-right: 4px;
}

.login__item--password {
    padding-left: 4px;
}

@media (min-width: 480px) {
    .login__item--password {
        padding-right: 4px;
    }
}

.login__item--password .login__label {
    left: 7px;
}

.login__item--submit {
    color: rgba(0, 0, 0, 0.875);
    fill: rgba(0, 0, 0, 0.875);
}

@media (min-width: 480px) {
    .login__item--submit {
        justify-content: flex-end;
        max-width: 56px;
    }
}

.login__label {
    position: absolute;
    top: 3px;
    left: 3px;
    order: -1;
    display: block;
    flex: 0 1 auto;
    min-width: 40px;
    padding: 9px 9px 10px;
    color: rgb(255, 255, 255) ;
    font-weight: bold;
    font-size: 1.25em;
    text-align: center;
    text-shadow: 0 0 1px rgba(0, 0, 0, .95), 0 0 2px rgba(0, 0, 0, .95), 0 1px 2px rgba(0, 0, 0, .95);
    background: #333 linear-gradient(to bottom, #666 0%, #333 100%) repeat-x 50% 0;
    cursor: pointer;
    transition: color 0.4s ease, background-color 0.4s ease;
}

.login__input:focus + .login__label {
    color: #;
    background-color: #333   ;
}


.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.login__icon {
    display: block;
    margin: auto;
    opacity: 0.8;
}

.login__item--error .login__icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    min-width: 1.25em;
    margin-right: 8px;
    margin-left: 8px;
    color: currentColor;
    fill: currentColor;
    font-size: 1.25em;
}

.login__description {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    text-indent: 150%;
    white-space: nowrap;
}

.login__input {
    display: flex;
    flex: 1 1 100%;
    min-width: 100px;
    margin: 0;
    padding: 12px 12px 12px 56px;
    color: rgba(0, 0, 0, 0.875);
    border: 2px solid #333   ;
    transition: background-color 0.4s ease;
}
.login__input:hover,
.login__input:focus,
.login__input:active {
    color: #000;
    background-color: rgba(255, 255, 255, 0.9375);
}

.login__input::-webkit-input-placeholder {
    color: rgba(120, 96, 48, 0.4);
}
.login__input:-ms-input-placeholder {
    color: rgba(120, 96, 48, 0.4);
}
.login__input::placeholder {
    color: rgba(120, 96, 48, 0.4);
}

.login__submit {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.875);
    font-size: 1.125em;
    font-weight: bold;
    text-transform: uppercase;
    background: #333 linear-gradient(to bottom, #666 0%, #333 100%) repeat-x 50% 0;
    border: none;
    cursor: pointer;
    transition: color 0.4s ease, background 0.4s ease;
}

@media (min-width: 480px) {
    .login__submit {
        width: auto;
    }
}

.login__submit:hover,
.login__submit:focus {
    color: black    ;
    background-color: #111;
    background-image: linear-gradient(to bottom, #333 0%, #333 100%);
}

.login__submit:active {
    color: #333  ;
    background-color: #000;
    background-image: linear-gradient(to bottom, #222 0%, #000 100%);
}

.login label.error {
    position: absolute;
    top: 100%;
    flex: 0 1 auto;
    margin-right: auto;
    margin-left: auto;
    padding: 4px;
    font-size: 0.75em;
    text-align: center;
    background-color: #f44;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    box-shadow: 0 1px 6px rgb(0 0 0 / 25%);
}


.main {
    flex: 1 1 auto;
}


.banner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.banner > iframe,
.banner > img {
    flex: 0 1 auto;
    display: block;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}


.footer {
    position: relative;
    flex: 0 1 auto;
    text-align: center;
    background-image:  linear-gradient(to bottom, transparent 0%, #000 100%);
    background-size: contain, auto;
}

.footer::before,
.footer::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 288px;
    height: 405px;
   
    opacity: 0.75;
    z-index: -1;
}

@media (min-width: 960px) {
    .footer::before,
    .footer::after {
        width: 384px;
        height: 540px;
    }
}

.footer::before {
    left: 0;
}

.footer::after {
    right: 0;
    transform: rotateY(180deg);
}

.image-set,
.image-set img {
    display: block;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.copyright {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
}