﻿* {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: microsoft yahei;

}

html, body {
    width: 100%;
    height: 100%;
    background: #fff
}

#container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

#output {
    width: 100%;
    height: 100%;
    z-index: 2;
}

.prompt {
    width: 60%;
    height: 30px;
    margin: 5px auto;
    text-align: center;
    line-height: 30px;
    font-family: microsoft yahei, Arial, sans-serif;
    font-size: 13px;
    color: #fff;
    z-index: 2;
}


form {
    padding: 10px 0;
    position: relative;
    z-index: 2;
    animation: layerize cubic-bezier(0.4, 0, 0.2, 1) 1200ms 200ms forwards;

}

form input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 1px solid rgba(255, 255, 255, .4);
    /*background-color: rgba(255, 255, 255, .2);*/
    width: 200px;
    border-radius: 3px;
    padding: 8px 15px;
    margin: 0 auto 10px;
    display: block;
    text-align: center;
    font-size: 15px;
    color: #fff;
    -webkit-transition-duration: .25s;
    transition-duration: .25s;
    font-weight: 300
}

form input:hover {
    background-color: rgba(255, 255, 255, .4)
}

form input:focus {
    background-color: #fff;
    width: 230px;
    color: #333
}

form button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    background-color: #fff;
    border: 0;
    padding: 10px 15px;
    color: #333;
    border-radius: 3px;
    width: 200px;
    cursor: pointer;
    font-family: microsoft yahei, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    -webkit-transition-duration: .25s;
    transition-duration: .25s
}

form button:hover {
    background-color: #f5f7f9
}

.containerT h1 {
    animation: layerize cubic-bezier(0.4, 0, 0.2, 1) 1200ms 200ms forwards;
    opacity: 0;
    width: 100%;
    color: #FFFFFF;
    font: italic 25 2rem "Roboto", sans-serif;
    cursor: default;
    user-select: none;
    text-align: center;
}

.login_warp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 35%;
    text-rendering: optimizeLegibility;
    overflow: hidden;
}

@keyframes layerize {
    0% {
        opacity: 0;
        transform: translate(0, 0);
        text-shadow: none;
    }
    100% {
        opacity: 1;
        transform: translate(-0.06667em, -0.06667em);
        text-shadow: 0 0 transparent, 0.03333em 0.03333em rgba(255, 255, 255, 0.4), 0.06667em 0.06667em rgba(255, 255, 255, 0.3), 0.1em 0.1em rgba(255, 255, 255, 0.2), 0.13333em 0.13333em rgba(255, 255, 255, 0.1);
    }
}


.containerT {
    width: 450px;
    height: 350px;
    text-align: center;
    position: absolute;
    top: 45%;
    left: 50%;
    margin: -150px 0 0 -230px;
    border-radius: 25px;
    animation: layerize cubic-bezier(0.4, 0, 0.2, 1) 1200ms 200ms forwards;
    max-width: 95%;
    background: hsla(0, 0%, 100%, .35) border-box;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .3) inset, 0 .5em 1em rgba(0, 0, 0, 0.6);
    text-shadow: 0 1px 1px hsla(0, 0%, 100%, .3);
}
