/**
 *  File: login.css
 *
 *  Login screen only.
 *
 *  This style sheet for the ContactQ server administration tool, is used to
 *  overide the default theme (colours/backgrounds)
 *
 *  Author: John Tarlton
 */

* {
	font-family: verdana, "Trebuchet MS", "Bitstream Vera Sans", lucida, arial, helvetica, sans-serif;
	font-size: 12px;
}

body {
	background: white;
}

img { border: none; padding:0; margin:0; vertical-align: middle;}

/* standard links, must be defined in this order! */

a:link {
	background: transparent;
	color: #666;
	text-decoration: none;
}

a:visited {
	background: transparent;
	color: #666;
	text-decoration: none;
}

a:hover {
	background: transparent;
	color: #333;
	text-decoration: underline;
}

a:active {
	background: transparent;
	color: #666;
	text-decoration: none;
}

div#content {
    display: block;
	text-align: center;
	background: transparent;
	width: 100%;
	height: 100%;
}

div#main {
    display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 350px;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	text-align: center;
	border: solid 4px #678;
	background: #ccd6e0;
	padding-bottom: 10px;
}

div#logo {
	display: block;
	width: 100%;
	background: #bbc5d0;
}

div#logo img {
	margin: 15px 75px;
}

/* form container */
div#form-container {
    display: block;
	height: 100px;
	width: 330px;
	margin: 2em 100px 1em 100px;
}

#emailaddressform_entry {
	display: none;
}

div#product {
	display: block;
	margin: 15px;
	color: black;
	font-weight: bold;
	font-size: 1em;
}

div.message-container {
	display: inline-block;
}

span.icon {
	float: left;
	padding: 0 10px 0 0;	
}

/* response message to user: login failed, logout reason, email address invalid etc */
span.message {
	float: left;
	text-align: left;
	color: #666;
	font-weight: bold;	
}

input { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
tr td div.field input.disabled { background-color: #e4e4e4; color: #666; }
tr td div.buttons input.button.disabled { opacity: 0.5; cursor: not-allowed; }
tr td div.buttons input.button.disabled:hover { background: #ddd url(/images/button-bg.png); color: #555; border: 1px outset #333; }

/* form layout */
div.row {
	clear: both;
	padding: 10px 5px;
}

tr td div.label {
	text-align: right;
	font-weight: bold;
	font-size: 1em;
	padding: 5px 1em;
	width: 105px;
}

tr td div.field {
	margin: 0;
	padding: 5px 1em;
}

tr td div.field input  {
	color: #000;
	border: 1px solid #666;
	font-size: 1em;
	width: 100%;
}

tr td div#forgot_password_link {
	text-align: right;
	padding: 0 0.7em 5px 0;
}

tr td div#login_btn {
	float: right;
	padding-right: 0.7em;
}

tr td div#submit_btn {
	float: left;
}

tr td div#cancel_btn {
	float: right;
	margin-right: -4px;
}

tr td div.buttons .button {
	background: #ddd url(/images/button-bg.png);
	color: #555;
	border: 1px outset #333;
	font-size: 95%;
	font-weight: bold;
	margin-bottom: 0;
	padding: 1px 0;
	width: 7em;
}

tr td div.buttons .button:hover {
	background: #f0f0f0;
	color: #930;
	border: 1px outset #666;
}

/* Sits below div#contents, contains copyright info.
 */
div#footer {
	padding-top: 6px;
	color: #369;
	font-size: 0.9em;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	color: #006699;
	height: 24px;
}
