* {
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #e4e4e4;
    background-image: url('../uploads/bg.jpg');
    background-size: cover;
    margin: 0;
    position: relative;
}

.loginbox {
    width: 100%;
    text-align: left;
    background: #444;
    padding: 20px 35px 30px;
    box-shadow: 0px 0px 10px 0px #171717;
}
.loginbox img {
    margin-bottom: 15px;
}
.loginwrap {
    width: 350px;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -162px 0 0 -175px;
}

lable {
    display: block;
    color: #f6f6f6;
    font-size: 12px;
}

.input input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 6px auto 15px;
    border: none;
    box-shadow: 1px 1px 2px 0px #2d2d2d;
}
.button {
    text-align: right;
	position:relative;
}
.button a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    line-height: 17px;
    position: absolute;
    margin: 9px 0;
    left: 0;
}

input.button {
    background: #50bd50;
    border: none;
    border-radius: 3px;
    padding: 10px 22px;
    font-weight: bold;
    text-transform: uppercase;
    color: #F8F8F8;
    cursor: pointer;
}

input.button:hover {
    background: #55c555;
}