﻿.wrap-all, #wrap {
    background-color: #000;
    height: 100vh;
    padding: 0;
}

#video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: .9;
}

.logo-login {
    position: fixed;
    bottom: 16px;
    left: 28px;
    z-index: 6;
    overflow: hidden;
}

    .logo-login img {
        height: auto;
        width: 200px;
    }

.hot-links {
    position: fixed;
    height: 60px;
    bottom: 16px;
    right: 28px;
    z-index: 6;
    overflow: hidden;
}

    .hot-links a {
        float: left;
        height: 60px;
        margin: 0 12px;
        padding-top: 40px;
        font-size: 11px;
        text-transform: uppercase;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
        color: #a5a5a5;
        position: relative;
        text-align: center;
        letter-spacing: 1px;
        font-weight: 400;
    }

        .hot-links a:before {
            position: absolute;
            top: 4px;
            left: 50%;
            content: '';
            width: 30px;
            height: 30px;
            margin-left: -15px;
            background-image: url(/Content/images/icons.png);
            background-repeat: no-repeat;
            background-size: 100%;
        }

        .hot-links a.hot-secret:before {
            background-position: 0 -60px;
        }

    .hot-links:hover a:before {
        animation: rotation 1s infinite linear;
    }

@keyframes rotation {
    100% {
        transform: rotatey(360deg)
    }
}

#login-box {
    position: fixed;
    top: 40%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.login-form {
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, .5);
    width: 365px;
    height: 220px;
    text-align: center;
}

    .login-form label {
        letter-spacing: 3px;
        font-weight: bold;
        font-size: 13px;
        text-transform: uppercase;
        margin-bottom: 20px;
        display: block;
        padding-top: 32px;
        color: #fbfbfb;
        white-space: nowrap;
    }

    .login-form input {
        text-align: center;
        font-weight: bold;
        color: #fff;
    }

        .login-form input.error {
            border-color: rgb(207, 95, 95);
        }

    .login-form button {
        padding-left: 30px;
        padding-right: 30px;
        color: #efefe8
    }

@media (max-width: 480px) {
    .login-form {
        padding: 15px 30px;
        width: 300px;
    }

        .login-form label {
            font-size: 12px;
            letter-spacing: 1.5px;
        }

    .logo-login {
        left: 50%;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .hot-links {
        bottom: 48px;
        right: auto;
        left: 50%;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}