/*! 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;
    color: #eee;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #332f33 url("../images/bg.jpg") no-repeat 50% 0;
    background-size: cover;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    display: flex;
    flex-flow: column wrap;
}

.wrapper {
    max-width: 561px;
    margin-right: auto;
    margin-left: auto;
    padding: 16px 8px;
}


.header {
    background-color: rgba(0, 0, 0, 0.03125);
}

.logo {
    clear: both;
    display: block;
    max-width: 240px;
    margin: 16px auto;
    animation: 1.5s ease 0s 1 normal both running logoIntro;
}

@keyframes logoIntro {
    0% {
        transform: scale(1, 1);
        opacity: 0;
    }

    1% {
        transform: scale(1.5, 1.5);
        opacity: 0;
    }

    60% {
        transform: scale(0.9375, 0.9375);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 1;
    }
}


.logo > img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.logo > img[src$=".svg"] {
    height: 90px;
}


.main {
    flex-grow: 1;
}

.login {
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
    padding: 12px;
    font-size: 1.125em;
    background-color: #ccc;
    background-image: linear-gradient(to bottom, #ccc 0%, #bbb 100%);
    border-radius: 4px;
    box-shadow: -3px 6px 4px rgba(0, 0, 0, 0.25), 3px 6px 4px rgba(0, 0, 0, 0.25);
    animation: 1.5s ease 0s 1 normal both running loginIntro;
}

@keyframes loginIntro {
    0% {
        transform: scale(1, 1);
        box-shadow: none;
        opacity: 0;
    }

    1% {
        transform: scale(0.9375, 0.9375);
        box-shadow: none;
        opacity: 0;
    }

    60% {
        transform: scale(1.0625, 1.0625);
        box-shadow: -6px 12px 12px rgba(0, 0, 0, 0.15), 6px 12px 12px rgba(0, 0, 0, 0.15);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        box-shadow: -3px 6px 4px rgba(0, 0, 0, 0.25), 3px 6px 4px rgba(0, 0, 0, 0.25);
    }
}

.login__item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.login__item:not(:last-of-type) {
    margin-bottom: 16px;
}

.login__item--error {
    display: none;
    justify-content: center;
    padding: 8px;
    color: #f00;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.67);
    border-radius: 4px;
}

.login__item--submit {
    color: rgba(255, 255, 255, 0.875);
    fill: rgba(255, 255, 255, 0.875);
}

.login__label {
    order: -1;
    display: block;
    min-width: 48px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: bold;
    font-size: 1.25em;
    text-align: center;
    background-color:#00dbfb;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    cursor: pointer;
    animation: 1s ease 0s 1 normal both running slideLabel;
    transition: color 0.4s ease, background-color 0.4s ease;
}

.login__item:nth-of-type(3) .login__label {
    animation-delay: 0.4s;
}

@keyframes slideLabel {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

.login__input:focus + .login__label {
    background-color: #006d7d;
}


.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.login__icon {
    display: block;
}

.login__description {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    text-indent: 150%;
    white-space: nowrap;
}

.login__input {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    max-width: calc(100% - 48px);
    margin: 0;
    padding: 16px;
    color: rgba(0, 0, 0, 0.9);
    background-color: #eee;
    border: none;
    border-radius: 4px;
    transition: background 0.4s ease-in-out;
    z-index: 1;
}
.login__input:hover,
.login__input:focus,
.login__input:active {
    color: #000;
    background-color: #fff;
}

.login__input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}
.login__input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}
.login__input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.login__submit {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: inherit;
    font-size: 1.125em;
    text-transform: uppercase;
    background-color:#00dbfb;
    background-image: linear-gradient(to bottom, #006d7d 0%,#00dbfb 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.login__submit:hover,
.login__submit:focus {
    background-color: #006d7d;
    background-image: linear-gradient(to bottom, #00dbfb 0%, #006d7d 100%);
}

.login__submit:active {
    background-color: #00dbfb;
    background-image: linear-gradient(to bottom, #006d7d 0%, #00dbfb 100%);
}

.login label.error {
    flex-basis: 100%;
    order: -1;
    padding: 8px;
    color: #f33;
    font-size: 0.875em;
    text-align: center;
    border-radius: 3px;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column wrap;
    margin-right: auto;
    margin-left: auto;
}

.banner iframe,
.banner img {
    display: block;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    border-radius: 6px;
}


.footer {
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
}