@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,
main {
    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,
.login__input,
.login__label {
    background-color: #fff;
}

html {
    box-sizing: border-box;
    color: #222;
    font-family: "Barlow Semi Condensed", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.01em;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body,
main,
.first-content,
.last-content {
    display: flex;
}

body {
    flex-flow: column wrap;
}

@media (max-width: 767.98px) {
    main {
        flex-direction: column;
    }
}

.slogan {
    text-align: center;
}



.first-content,
.last-content {
    padding: 4rem 2rem;
}

@media (min-width: 768px) {
    .first-content,
    .last-content {
        width: 50%;
    }
}

.wrapper--first-content,
.wrapper--last-content {
    width: 100%;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .wrapper--first-content,
    .wrapper--last-content {
        margin-top: 10vh;
    }
}



@media (min-width: 768px) {
    .first-content .logo {
        display: none;
    }
}

@media (min-width: 768px) {
    .first-content .slogan {
        display: none;
    }
}



.last-content {
    position: relative;
    color: #fff;
    background-color: #00aff0;
}

@media (max-width: 767.98px) {
    .last-content {
        flex-grow: 1;
    }
}

@media (min-width: 768px) {
    .last-content {
        order: -1;
    }
}

.last-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("../images/logo-bg.svg");
    background-repeat: no-repeat;
    background-position: 50% 25%;
    background-size: 125% auto;
    opacity: 0.125;
    z-index: 1;
    pointer-events: none;
}

@media (min-width: 768px) {
    .last-content::before {
        background-position: 50% 125%;
    }
}

.wrapper--last-content {
    z-index: 2;
}

.last-content .logo {
    margin-bottom: 2rem;
}

.last-content .slogan {
    font-size: 2rem;
}

@media (max-width: 767.98px) {
    .last-content .logo,
    .last-content .slogan {
        display: none;
    }
}



.logo {
    display: block;
    max-width: 225px;
    margin-right: auto;
    margin-left: auto;
}

.login-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: normal;
}

.login__item {
    position: relative;
}

.login__item:not(.login__item--error) {
    display: flex;
    flex-flow: column wrap;
}

.login__item + .login__item {
    margin-top: 2rem;
}

.login__item--error {
    display: none;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: #f44;
}

.login__item--error .login__icon {
    max-width: 1.5em;
    max-height: 1em;
    margin-right: 4px;
    color: #f44;
    fill: #f44;
    font-size: 1em;
}

.login__input,
.login__submit {
    width: 100%;
    letter-spacing: inherit;
    border-width: 1px;
    border-style: solid;
}

.login__input,
.login__label {
    border-radius: 0.25rem;
}

.login__input {
    padding: 1rem;
    font-size: 1.125rem;
    border-color: #999;
    transition: border-color 0.25s ease;
}

.login__input:focus {
    border-color: #0091ea;
    outline: none;
}

.login__input:focus + .login__label {
    color: #0091ea;
}

.login__label {
    position: absolute;
    top: -0.75rem;
    left: 0.75rem;
    z-index: 2;
    padding: 0.25rem;
    color: #999;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.login label.error {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-width: 180px;
    margin-right: auto;
    margin-left: auto;
    padding: 6px;
    color: #fff;
    font-size: 0.875rem;
    text-align: center;
    background-color: #f44;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.login__submit {
    min-height: 3rem;
    padding: 0.625rem 1rem;
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
    text-transform: uppercase;
    background-color: #00aff0;
    border-color: #00aff0;
    border-radius: 1.5rem;
    transition: background-color 0.25s ease;
}

.login__submit:not([disabled]) {
    cursor: pointer;
}

.login__submit:hover,
.login__submit:focus,
.login__submit:active {
    background-color: #0091ea;
    border-color: #0091ea;
}