body {
    background-image: url(/images/working-office.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color:#464646;
}

.loginBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 420px;
    height: 420px;
    padding: 50px;
    border-radius: 10px;
    box-sizing: border-box;
    background: rgba(0,0,0,.3);
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 5%;
    overflow: hidden;
    position: absolute;
    top: calc(-100px/2);
    left: calc(50% - 50px);
}

h2{
    margin: 0;
    padding: 10px 0 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 1px 2px 3px #000;
}

.loginBox p{
    margin: 0;
    padding: 0;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 2px 3px #333;
}
.loginBox p.message{
    margin: 10px 0px 0px 0px;
    padding: 0;
    font-weight: bold;
    color: #ff2b2b;
    text-shadow: 1px 1px 1px #eee;
    text-align: center;
}

.loginBox input{
    width: 100%;
    margin-bottom: 20px;
}

.loginBox input[type="text"],
.loginBox input[type="password"]{
    border: none;
    border-bottom: 1px solid #fff;
    background-color: rgba(255,255,255,0.5);
    border-radius: 5px;
    outline: none;
    height: 40px;
    color: rgba(32, 32, 32, 0.9);
    font-size: 16px;
    font-weight: bold;
}

::placeholder{
    color: rgba(64,64,64,.5);
}

.loginBox input[type="button"]{
    border: none;
    outline: none;
    margin-top: 15px;
    height: 40px;
    background: #fff2d2;
    color: #262626;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
}

.loginBox input[type="button"]:hover{
    color: #fff;
    background: #1a3212;
}

.loginBox a{
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}