/******************************************************************************************
*************************                              ************************************
*************************       LOGIN STYLESHEET       ************************************
*************************                              ************************************
*******************************************************************************************/

#login-form {
    position: absolute;
    display: block;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: px;
    background: #333;
    /*    box-shadow: 0px 0px 15px 3px #333;
    /*    border-radius: 4px;*/
    font-family: sans-serif;
    z-index: 2;
}

#logo {
    position: absolute;
    width: 300px;
    top: 100px;
    right: 0px;
    left: 0px;
    margin: 0px auto;
    background: url(../images/Proguardtech-Logo-White.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 0;
    padding: 0;
    /* reset */
    padding-bottom: 250px;
}

#user,
#pass {
    position: absolute;
    bottom: 0px;
    left: 40px;
    right: 0px;
    margin: 0px auto;
    width: 260px;
    height: 35px;
    -webkit-appearance: none;
    text-align: center;
    border: 0px;
    background: #333;
    text-rendering: optimizeLegibility;
    font-size: 14pt;
    overflow: hidden;
    border-bottom: solid 1px #aaa;
    font-family: Roboto;
    text-indent: -40px;
    color: #eee;
}

#user:focus,
#pass:focus {
    outline: none;
}

#user-icon,
#pass-icon {
    position: fixed;
    width: 30px;
    height: 30px;
    right: 0px;
    left: -250px;
    border-bottom: solid 1px #aaa;
    margin: 0px auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#user-icon {
    background-image: url(../images/user-icon.png);
    bottom: 275px;
}

#pass-icon {
    background-image: url(../images/pass-icon.png);
    bottom: 225px;
}

#user {
    bottom: 275px;
}

#pass {
    bottom: 225px;
}

#login-button {
    position: fixed;
    width: 300px;
    height: 50px;
    bottom: 100px;
    right: 0px;
    left: 0px;
    margin: 0px auto;
    box-shadow: 0px 0px 0px 0px #333;
    background: #222;
    border-radius: 0px;
    color: #fff;
    font-size: 14pt;
    text-align: center;
    line-height: 50px;
    /*    text-shadow: 1px 4px 6px #f00, 1px 4px 6px #336E7B;*/
    text-rendering: optimizeLegibility;
    cursor: pointer;
    box-shadow: 0px;
    -webkit-user-select: none;
    /*    overflow: hidden;*/
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #777;
}


/*
@media screen and (max-width: 800px) {
#user,#pass,#login-button{
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: calc(100% - 50px);
height: 20%;
margin: auto;
text-indent: 10px;
-webkit-appearance: none;
border-radius: 10px;
border: 0px;
text-rendering: optimizeLegibility;
font-size: 30px;
color: #555;
background: rgba(255, 254, 254, 0.63)
}
#user{
bottom: 50%;
}
#login-button{
text-indent: 0px;
width: 120px;
height: 60px;
top: 60%;
box-shadow: 0px 0px 0px 0px #333;
background: #C80033;
border-radius: 0px;
color: #fff;
font-size: 20px;
line-height: 60px;
text-rendering: optimizeLegibility;
cursor: pointer;
box-shadow: 0px;
}
}*/

@media screen and (max-width: 400px) {
    * {
        padding: 0px;
        margin: 0px;
    }
    #logo {
        width: 300px;
        top: 50px;
        padding: 0;
        /* reset */
        padding-bottom: 55%;
    }
    #user:focus,
    #pass:focus {
        outline: none;
    }
    #user-icon,
    #pass-icon {
        position: fixed;
        width: 30px;
        height: 30px;
        right: 0px;
        left: -250px;
        border-bottom: solid 1px #aaa;
        margin: 0px auto;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    #user-icon {
        bottom: 155px;
    }
    #pass-icon {
        bottom: 105px;
    }
    #user {
        bottom: 155px;
    }
    #pass {
        bottom: 105px;
    }
    #login-button {
        bottom: 20px;
        /*    overflow: hidden;*/
    }
}