﻿html, body {
    background-color: #000;
    height: 100%;
    height: 100vh;
    display: block;
    overflow: hidden;
}

.page {
    width: 120vw;
    height: 120vh;
    position: absolute;
    left: -5vw;
    top: -5vh;
    display: block;
    background-image: url('/images/002.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(5px);
}

.pannel {
    height: 450px;
    width: 310px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    z-index: 1
}

    .pannel .sign {
        height: 50px;
        /*width: 300px;*/
        margin-top: 20px;
    }

        .pannel .sign input[type=password], .pannel .sign input[type=text] {
            height: 50px;
            
            border: solid 1px rgba(255,255,255,0.6);
            border-radius: 10px;
            background-color: rgba(0,0,0,0.2);
            display: block;
            padding-left: 15px;
            font-size: 18px;
            color: #fff;
            text-align: left;
            transition: all ease 300ms;
        }

        .pannel .sign button {
            /*border: 5px solid #ffffff63;
            background-color: rgb(0 0 0 / 16%);*/
            color: white;
            margin-left: 50%;
            transform: translate(-50%);
            width: 55px;
            height: 55px;
            border-radius: 100%;
            line-height: 35px;
            text-align: center;
            background: rgba(149, 236, 105, 0.2 );
            box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
            backdrop-filter: blur( 6.5px );
            -webkit-backdrop-filter: blur( 6.5px );
            border-radius: 100%;
            border: 3px solid rgba( 255, 255, 255, 0.18 );
            transition: all 200ms linear;
        }
            .pannel .sign button:hover {
                background: rgba( 153, 153, 153, 0.2 );
                border: 1px solid rgba( 255, 255, 255, 0.18 );
                backdrop-filter: blur( 1.5px );
            }
            .pannel .logo {
                height: 150px;
                text-align: center;
            }

                .pannel .logo img {
                    margin-left: auto;
                    margin-right: auto;
                    height: 120px;
                    width: 120px;
                    margin-top: 10px;
                    border: solid 5px #ffffff;
                    border-radius: 20px;
                    background-color: white;
                    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.6 );
                }

::placeholder {
    color: #ccc;
    font-size: 14px
}

::-webkit-input-placeholder {
    color: #ccc;
    font-size:14px
}

input:focus {
    border: solid 1px transparent !important;
    box-shadow: 0 0 15px 0 #03a9f4;
}
