
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

body {
    background: url('bg_intuit.jpg') no-repeat fixed center top;
    background-size: cover;
    font-family: Montserrat, Verdana, Geneva, sans-serif;
}

.logo {
	width: 213px;
	height: 80px;
	background-size: auto 100%;
	margin: 30px auto;
	background-image: url(art_login_01.png);
	background-repeat: no-repeat;
	background-position: center center;
}

.login-block {
    width: 320px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border-top: 5px solid #888;
    margin: 10% auto auto auto;
}

.login-block h1 {
    text-align: center;
    color: #000;
    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: Montserrat;
    padding: 0 20px 0 50px;
    outline: none;
}

.login-block input#usr {
    background: #fff url('user.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#usr:focus {
    background: #fff url('user.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input#pwd {
    background: #fff url('lock.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#pwd:focus {
    background: #fff url('lock.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input:active, .login-block input:focus {
    border: 1px solid #CC0000;
}

.login-block button {
    width: 100%;
    height: 40px;
    background: #888;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #888;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
}

.login-block button:hover {
    background: #00718b;
	border: 1px solid #006699;
}

