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

/*
  Name: Wcc home
  Date: Sept 2015
  Description: Sample layout 
  Version: 1.0
  Author: R Cleveland
*/
.main {
	display: table;
	height:100%;
	width:100%;	
	}
.holder {
	
	display: table-cell;
    vertical-align: middle;
	}
.login-block {
    width: 320px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    margin: 0 auto;

	
}
.header_logo{
	padding-bottom:20px;
	}

.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#username {
    background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#username:focus {
    background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input#password {
    background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#password:focus {
    background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

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

.login-block button {
    width: 100%;
    height: 40px;
    background: #e14d20;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #AAC4D7;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
}

.login-block button:hover {
    background: #AAC4D7;
	color: #2B3149;
}
#error{
	color:red;
	text-align:center;
	padding-bottom:20px;	
	}
	
#ra{
	float:right;	
	}
	
#spacer{
	height:200px;
	}