/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 14-Dec-2018, 14:14:04
    Author     : Bobby Vaughan-Jones
*/

/*------------------------------------------------------------------------------Login Form------------------------------------------------------------------------------*/
#login {
	width : 360px;
	margin : 110px auto 0 auto;
}
#login #login_logo {
	font-size: 24px;
	color: #555;
    text-align: center;
}
#login h1 {
	margin : 0 0 10px 0;
}
#login #login_main{
	background : #fff;
	border : 1px solid #e5e5e5;
	width : 320px;
	margin : 15px auto;
	padding : 20px;
	border-radius : 3px;
	-moz-border-radius : 3px;
	box-shadow : 0 0 5px #ccc;
	-moz-box-shadow : 0 0 5px #ccc;
	-webkit-box-shadow : 0 0 5px #ccc;
	color: #555;
	overflow: auto;
}
#login form label {
	font-size : 14px;
}
#login form .text_input {
	width : 310px;
	padding : 4px;
	margin : 4px 0 15px 0;
	background : #fbfbfb;
	color : #555555;
	font-size : 24px;
	font-weight : normal;
	border : 1px solid #e5e5e5;
	border-radius : 3px;
	-moz-border-radius : 3px;
	box-shadow : 1px 1px 2px rgba(200, 200, 200, 0.2) inset;
	-moz-box-shadow : 1px 1px 2px rgba(200, 200, 200, 0.2) inset;
	-webkit-box-shadow : 1px 1px 2px rgba(200, 200, 200, 0.2) inset;
}
#login form #submit {
	float : right;
	padding : 4px 6px;
	font-size : 16px;
}