﻿:root {
    --hyperlink-purple: #7272ED;
    --error-red: #EE4557;
    --text-medium-emphasis: rgba(0,0,0, 0.72);
}

/* latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    src: url(https://fonts.gstatic.com/s/opensans/v29/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html,
body {
    height: 100%;
    min-height: 700px;
}

body {
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
    font-family: sans-serif, 'Open Sans';
}

.group-50-bg {
    background-image: url("/images/background/group-50.svg");
    background-position: bottom center;
    background-repeat: no-repeat;
}

@media (min-width: 2160px) {
    .group-50-bg {
        background-size: contain;
    }
}

@media (max-width: 2159px) {
    .group-50-bg {
        background-size: 2160px;
    }
}

main {
    height: 90%;
}

.input-info {
    height: 20px;
    width: 94%;
    margin-left: 13px;
    margin-top: 0.5em;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.012em;
    text-align: left;
    color: var(--text-medium-emphasis);
}

.input-error-message {
    color: var(--error-red);
}

h2 {
    margin-top:5%;
    font-size: 20.5px;
}

img#llz-logo {
    align-self:flex-start;
    position:absolute;
}

@media (min-width: 1200px) {
    img#llz-logo {
        width: 160px;
        height: 50px;
        top: 15px;
        left: 149px;
        margin-bottom: 39px;
    }
}

@media (min-width: 481px) and (max-width: 1199px) {
    img#llz-logo {
        width: 160px;
        height: 50px;
        left: 32px;
        top: 19px;
        margin-bottom: 35px;
    }
}

@media (max-width: 481px) {
    img#llz-logo {
        width: 160px;
        height: 50px;
        left: 16px;
        top: 5px;
        margin-bottom: 10px;
    }
}

footer {
    position: absolute;
    bottom: 16px;
    align-self:flex-start;
}

@media (min-width: 1200px) {
    footer {
        left: calc(50% - 356px/2 - 29%);
    }
}

@media (min-width: 481px) and (max-width: 1199px) {
    footer {
        left: 4%;
    }
}

@media (min-width: 281px) and (max-width: 480px) {
    footer {
        left: calc(50% - 343px/2.5);
    }
}

@media (max-width: 280px) {
    footer {
        left: calc(50% - 262px/2);
        bottom: 1.5%
    }
}

@media (max-height: 545px),
(min-height: 546px) and (max-height: 700px) and (orientation: landscape)
{
    footer {
        bottom: calc(26px/2 - (700px - 100vh));
    }
}

footer > table > tbody > tr > td {
    min-width: 8em;
}

footer > table > tbody > tr > td > span.llz-copyright {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.012em;
    color: rgba(255,255,255,0.8);
}

footer > table > tbody > tr > td > a.terms-link {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.012em;
    color: #EF0E7F;
    text-decoration: none;
}

.form-signin {
    width: 82%;
}

.below-form-title {
    margin-bottom: 45px;
}

.title-caption {
    width: 85%;
    height: 6%;
    text-align:center;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--text-medium-emphasis);
    margin: auto;
}

.form-item {
    margin-top: 30px;
    width: 299px;
}

.form-signin .form-floating:focus-within {
    z-index: 2;
}

.form-signin:focus {
    outline:none;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

input[data-autocompleted] {
    background-color: transparent !important;
}

input[type='checkbox'] {
    width: 16px !important;
    height: 16px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    outline: 2px solid rgba(0, 0, 0, 0.54);
    border-radius: 20%;
    margin: 0 0.5em 0 0.25em;
    vertical-align: middle;
    cursor: pointer;
}

    input[type='checkbox']:checked {
        background-color: var(--hyperlink-purple);
        -webkit-appearance:checkbox;
        outline:none;
    }

.form-floating {
    box-sizing: border-box;
    height: 40px;
    width: 299px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.36);
    border-radius: 2px;
}

    .form-floating > svg {
        position:absolute;
        top: auto;
        right: 4px;
        margin: 0;
        width: 24px;
        height: 24px;
        fill: rgba(0,0,0,0.38);
    }

    .form-floating > .form-signin {
        position:absolute;
        height:27px;
        color: rgba(0,0,0,0.84);
        font-size: 14.3px;
        line-height: 22px;
        bottom: 3px;
        left: 16px;
        border: none;
    }

/*    .form-floating > .form-signin#floatingPassword {
        font-size: 1.55em;
    }*/

    .form-floating > .input-caption {
        width: fit-content;
        padding-right: 0.8em;
        height: 16px;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.012em;
        color: rgba(0,0,0,0.68);
        text-shadow: 0px 0px 4px #FFFFFF;
        background: #FFFFFF;
        margin-top: -8px;
        margin-left: 9px;
        text-align: left;
        text-indent: 8px;
    }

.panel {
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,.24);
    position: absolute;
}

@media (min-width: 1200px) {
    .panel {
        width: 356px;
        left: calc(50% - 356px/2);
        top: calc(20%);
    }
}

@media (min-width: 481px) and (max-width: 1199px) {
    .panel {
        width: 372px;
        left: calc(50% - 372px/2 - 1px);
        top: calc(20%);
    }
}

@media (min-width: 281px) and (max-width: 480px) {
    .panel {
        width: 343px;
        left: calc(50% - 343px/2);
        top: calc(18%);
    }
}

@media (min-width: 281px) and (max-width: 490px) {
    h2 {
        font-size: 20.3px;
    }
}

@media (max-width: 280px) {
    .panel {
        width: 275px;
        left: calc(50% - 277px/2);
        top: 140px;
    }

    h2 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 1.8rem;
        width:230px;
    }

    .below-form-title {
        margin-bottom:  22px;
    }

    .form-item,
    .form-signin {
        margin-top: 16px;
        width: 220px;
    }

    .form-floating > .form-signin {
        left: 6px;
        width: 83%;
    }
}

@media (max-height: 545px) {
    .panel {
        top: 135px;
    }
}

.panel-body {
    padding: 28px
}

.panel-default {
    border-color: #ffffff;
    text-align: center;
}

.panel-item {
    width: 299px;
}

.checkbox * {
    box-sizing: border-box;
}

.checkbox input:not([type="checkbox"]):not([type="radio"]) {
    display: none;
}

.checkbox {
    position: relative;
    display: inline-block;
    margin-right: 1em;
    margin-left: 0.1em;
    white-space: nowrap;
    line-height: 1;
    float: left;
}

    .checkbox input {
        position: absolute;
        left: 0;
        top: 0;
        min-width: 1em;
        width: 100%;
        height: 100%;
        z-index: 2;
        opacity: 0;
        margin: 0;
        padding: 0;
        cursor: pointer;
    }

    .checkbox .state label {
        position: initial;
        display: inline-block;
        font-weight: 400;
        font-size: 12px;
        color: rgba(0,0,0,0.68);
        letter-spacing: 0.012em;
        margin: 0;
        text-indent: 2em;
        min-width: 18px;
    }

        .checkbox .state label:after,
        .checkbox .state label:before {
            content: "";
            width: 18px;
            height: 18px;
            display: block;
            box-sizing: border-box;
            border-radius: 0;
            border: 2px solid transparent;
            z-index: 0;
            position: absolute;
            left: 0;
            top: calc((0% - (100% - 18px)) - 8%);
            background-color: transparent;
        }

        .checkbox .state label:before {
            border-color: rgba(0, 0, 0, 0.54);
        }

    .checkbox .state.p-is-hover,
    .checkbox .state.p-is-indeterminate {
        display: none;
    }

    .checkbox.p-svg .state .svg {
        position: absolute;
        font-size: 1em;
        width: 18px;
        height: 18px;
        left: 0;
        z-index: 1;
        text-align: center;
        line-height: normal;
        top: calc((0% - (100% - 18px)) - 8%);
        border: 1px solid transparent;
        opacity: 0;
    }

    .checkbox.p-svg .state svg {
        margin: 0;
        width: 100%;
        height: 100%;
        text-align: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        line-height: 1;
    }

    .checkbox.p-svg input:checked ~ .state .svg {
        opacity: 1;
    }

    .checkbox.p-curve .state label:after,
    .checkbox.p-curve .state label:before {
        border-radius: 15%;
    }

    .checkbox input:checked ~ .state.p-success label:after,
    .checkbox.p-toggle .state.p-success label:after {
        background-color: var(--hyperlink-purple) !important;
    }

    .checkbox input:checked ~ .state.p-success .svg,
    .checkbox.p-toggle .state.p-success .svg {
        color: #fff;
        stroke: #fff;
    }

.button {
    height: 36px;
    border: none;
    color: white;
    font-size: 14.3px;
    letter-spacing: 0.012em;
    border-radius: 2px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.button-primary {
    background-color: var(--hyperlink-purple);
}

.button-gradient-pinkyellow {
    background: linear-gradient(90deg, #EE1358 -0.57%, #E8AA28 100.58%);
    width: 100px;
}

.small-link-purple {
    display:inline-block;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.012em;
    float: right;
    margin: 0px;
}

    .small-link-purple a {
        color:var(--hyperlink-purple);
        text-decoration:none;
    }

.vertical-center {
    line-height: 165px;
}

    .vertical-center object{
        transform: translateY(25%);
    }

.vertical-margins-13px {
    margin-top: 13px;
    margin-bottom: 13px;
}

.hide {
    display:none;
}

.reveal-password-svg, .reveal-password-svg:hover {
    cursor:pointer
}

input[type='password'] + svg:first-of-type,
input[type='password'] + svg:first-of-type + svg {
    cursor: pointer;
}

#upper-right-links {
    position: absolute;
    right: 16px;
    vertical-align:middle;
}