﻿body {
    margin: 0;
    padding: 0;
}

    body:before {
        content: '';
        position: fixed;
        width: 100vw;
        height: 100vh;
        background-image: url(../images/pcd_loginPage_2.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        -webkit-filter: blur(5px);
        -moz-filter: blur(5px);
    }

.login-form {
    position: absolute;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 20%; /*300px*/
    height: 250px;
    padding: 50px 40px;
    background: rgba(0,0,0,0.8);
}

    .login-form h2 {
        margin: 0;
        padding: 0 0 20px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
    }

    .login-form p {
        margin: 0;
        padding: 0;
        color: #fff;
    }

    .login-form input {
        width: 100%;
        margin-bottom: 20px;
    }

        .login-form input[type=text],
        .login-form input[type=password] {
            border: none;
            border-bottom: 1px solid #fff;
            background: transparent;
            outline: none;
            height: 35px;
            color: #fff;
            font-size: 15px;
        }

.btnBox {
    height: 40px;
    color: #fff;
    font-size: 15px;
    background: red;
    cursor: pointer;
    border-radius: 25px;
    border: none;
    outline: none;
    margin-top: 15px;
}

.btnBox:hover{
    background:#808080;
}
