﻿body {
    padding: 0;
    margin: 0;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

@media (max-aspect-ratio: 16/9) {
    .background-video {
        width: auto;
        height: 100%;
        z-index: 1;
    }
}

.background-video-fallback {
    width: 100%;
    height: 100%;
    background-image: url('Images/islands.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.page {
    /*background-image: url('Images/air-baloons.jpg');
    background-size: cover;
    background-repeat: no-repeat;*/
    background: none;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 3;
}

footer {
    font-family: Arial;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4px 10px;
    font-size: 12px;
    text-align: right;
    background: rgba(255, 255, 255, 0.45);
}

.logon-box {
    width: 380px;
    /*height: 223px;*/
    background: rgba(255, 255, 255, 0.45);
    margin-left: 150px;
    margin-top: calc(50vh - 150px);
    position: relative;
    font-family: 'Century Gothic', Arial;
    padding: 22px;
}

    .logon-box .logo {
        width: 105px;
        height: 35px;
        background: url('Images/logo_transp.png') no-repeat;
        background-size: cover;
    }

    .logon-box .header {
        font-weight: bold;
        font-size: 24px;
    }

    .logon-box .light-input {
        width: 100%;
        display: block;
        font-size: 16px;
        margin-top: 14px;
        border-bottom: 1px solid #1C409E;
        border-top: none;
        border-left: none;
        border-right: none;
        padding: 2px 0;
        background: none;
        outline: none;
        font-family: 'Century Gothic', Arial;
        border-radius: 0;
    }

        .logon-box .light-input::-webkit-input-placeholder {
            color: #322f2f;
        }

        .logon-box .light-input:-moz-placeholder {
            color: #322f2f;
            opacity: 1;
        }

        .logon-box .light-input::-moz-placeholder {
            color: #322f2f;
            opacity: 1;
        }

        .logon-box .light-input:-ms-input-placeholder {
            color: #322f2f;
        }

        .logon-box .light-input.error {
            border-bottom: 1px solid #f53;
        }

    .logon-box input.light-input:-webkit-autofill {
        transition: background-color 9000s ease-in-out 9000s;
    }

.logon-box-options {
    width: 100%;
    margin-top: 16px;
    font-size: 14px;
}

    .logon-box-options label {
        color: #322F2F;
        position: relative;
    }

.checkmark {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: rgba(255,255,255,.9);
    top: 1px;
    margin-left: 5px;
    position: relative;
}

input[type=checkbox] {
    display: none;
}

    input[type=checkbox]:checked + .checkmark:before {
        content: ' ';
        display: block;
        width: 8px;
        height: 4px;
        border-bottom: 2px solid #000;
        border-left: 2px solid #000;
        transform: rotate(-45deg);
        top: 2px;
        position: absolute;
        left: 2px;
    }

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.logon-box .forgot-password {
    color: #23004c;
    text-decoration: none;
    border-bottom: none;
}

    .logon-box .forgot-password:hover {
        border-bottom: none;
        color: #7a00e6;
    }

.button {
    background-color: #FFC000;
    font-size: 16px;
    font-family: 'Arial Narrow';
    padding: 6px 45px 6px 35px;
    border: none;
    box-shadow: none;
    font-weight: bolder;
    position: relative;
    Background: #781DC9;
    color: #FFFFFF;
    border-radius: 0px;
}

    .button .go {
        display: block;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        top: 11px;
        right: 17px;
        position: absolute; 
    }

.footer__text {
    max-width: 1170px;
    margin: 0 auto;
}

.buttons-block {
    margin-top: 20px;
}

#fullscrHider {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: Black;
    z-index: 10000;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
}

    #fullscrHider.fs-none {
        visibility: hidden
    }

    #fullscrHider.fs-disable {
        transition: opacity 3s ease-in-out;
        visibility: visible;
        background-color: Black;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
        opacity: 0.1;
        filter: alpha(opacity=10);
    }

    #fullscrHider.fs-hide {
        visibility: visible;
        background-color: White;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        opacity: 1;
        filter: alpha(opacity=1);
    }

.info-box {
    font-size: 12px;
    font-weight: 600;
    padding-top: 10px;
}

.logon-box #restorePwdForm {
    display: none;
}

.logon-box.restoring-pwd #restorePwdForm {
    display: block;
}

.logon-box.restoring-pwd #logonForm {
    display: none;
}

.header-container {
    height: 26px;
    margin-top: 22px;
}

    .header-container.has-message {
        height: 48px;
        margin-top: 0;
    }

        .header-container.has-message .header {
            display: none;
        }
