@charset "utf-8";
/* CSS Document */

body {
    background-size: cover;
	background-image:url(../images/bg.jpg);
	background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
}

.logo {
	background-color: #900;
	border-radius: 5px;
    max-width: 400px;
	padding:10px;
    margin: 30px auto;
}

.login-block {
    width: 380px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border-top: 10px solid #900;
    margin: 0 auto;
	box-shadow: 0 2px 4px rgba(0,0,0,.4); 
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.4); 
	-moz-box-shadow: 0 2px 4px rgba(0,0,0,.4); 
	-o-box-shadow: 0 2px 4px rgba(0,0,0,.4);
	opacity:0.8;
}

.login-block h1 {
    text-align: center;
    color: #900;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.login-block input {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: Verdana, Geneva, sans-serif;
    padding: 0 20px 0 50px;
    outline: none;
}

.login-block input#username {
    background: #f5f5f5 url('user.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#username:focus {
    background: #fbf5f5 url('user.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input#password {
    background: #f5f5f5 url('pass.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#password:focus {
    background: #fbf5f5 url('pass.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input:active, .login-block input:focus {
    border: 1px solid #ff656c;
}

.login-block button {
    width: 100%;
    height: 40px;
    background: #900;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #900;
    color: #FC9;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Verdana, Geneva, sans-serif;
    outline: none;
    cursor: pointer;
}

.login-block button:hover {
    background: #FC9;
	border: 1px solid #900;
	color:#900;
}
