﻿/******************************************************************************/
/*         Style: [ login.css ]                                               */
/*        Author: Zach Tommey                                                 */
/*   Description: Stylesheet for the login / security questions page.         */
/*                                                                            */
/*                                                                            */
/******************************************************************************/

/* [ 0.00 ] */
/******************************************************************************/
/*                               TABLE OF CONTENTS                            */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* NOTE: To quickly navigate to different regions of the page, copy the tag   */
/*       next to the TOC entry (eg. "[I.01]") and do a search on the document */
/*       for that tag.                                                        */
/*  ------------------------------------------------------------------------  */
/*    TAG     |         Region                                                */
/*  ........................................................................  */
/*    [0.00]       0.00 Table of Contents                                     */
/*    [I.01]       I.01 Web Font Declarations                                 */
/*    [I.02]       I.02 Top Level Elements / Main DIV Containers              */
/*'=========================================================================='*/



/* [I.01] */
/******************************************************************************/
/*                             WEB FONT DECLARATIONS                          */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@font-face
{
    font-family: 'Asap';
    font-style: normal;
    font-weight: 400;
    src: local('Asap'), local('Asap-Regular'),
         url('//themes.googleusercontent.com/static/fonts/asap/v1/SgBaq0dzhSGNMfqm2JX5ng.woff') format('woff');
}

@font-face
{
    font-family: 'Titillium Web 400';
    font-style: normal;
    font-weight: 400;
    src: local('Titillium Web'), local('TitilliumWeb-Regular'), 
         url('//themes.googleusercontent.com/static/fonts/titilliumweb/v1/7XUFZ5tgS-tD6QamInJTcdGU7DQ8I6RFMlK0vgclk7w.woff') format('woff');
}

@font-face
{
    font-family: 'Titillium Web 700';
    font-style: normal;
    font-weight: 700;
    src: local('Titillium WebBold'), local('TitilliumWeb-Bold'),
         url('//themes.googleusercontent.com/static/fonts/titilliumweb/v1/anMUvcNT0H1YN4FII8wpr0bathaSTBR2c4i13_wzlb0.woff') format('woff');
}

@font-face
{
    font-family: 'Noto Sans Bold';
    font-style: normal;
    font-weight: 700;
    src: local('Noto Sans Bold'), local('NotoSans-Bold'),
         url('//themes.googleusercontent.com/static/fonts/notosans/v1/PIbvSEyHEdL91QLOQRnZ13hCUOGz7vYGh680lGh-uXM.woff') format('woff');
}



/* [I.02] */
/******************************************************************************/
/*                    TOP LEVEL ELEMENTS / MAIN DIV CONTAINERS                */
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
body
{
	background-color: #303030;
	background-image: url("/Images/carbon_fibre.png");
	margin: 0;
	min-height: 440px;
	min-width: 480px;
	height: 440px;
	width: 480px;
}

.page
{
    height: inherit;
    width: inherit;
}

.loginContainer
{
	/* prevent size from changing from any borders or padding */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    position: fixed;
    top: 50%;
    left: 50%;
    width: inherit;
    margin-top: -220px;
    margin-left: -240px;
    background-color: #F2F2F2;
    border-radius: 16px;
    border: 2px solid #00A0FF;
}

.loginTitle {
	height: 90px;
    padding-top: 12px;
    padding-bottom: 8px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom: 2px solid #00A0FF;
    
	background: rgb(245,246,246); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(245,246,246,1) 0%, rgba(219,220,226,1) 50%, rgba(184,186,198,1) 75%, rgba(221,223,227,1) 90%, rgba(245,246,246,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(245,246,246,1)), color-stop(50%,rgba(219,220,226,1)), color-stop(75%,rgba(184,186,198,1)), color-stop(90%,rgba(221,223,227,1)), color-stop(100%,rgba(245,246,246,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(245,246,246,1) 0%,rgba(219,220,226,1) 50%,rgba(184,186,198,1) 75%,rgba(221,223,227,1) 90%,rgba(245,246,246,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(245,246,246,1) 0%,rgba(219,220,226,1) 50%,rgba(184,186,198,1) 75%,rgba(221,223,227,1) 90%,rgba(245,246,246,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(245,246,246,1) 0%,rgba(219,220,226,1) 50%,rgba(184,186,198,1) 75%,rgba(221,223,227,1) 90%,rgba(245,246,246,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(245,246,246,1) 0%,rgba(219,220,226,1) 50%,rgba(184,186,198,1) 75%,rgba(221,223,227,1) 90%,rgba(245,246,246,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f6f6', endColorstr='#f5f6f6',GradientType=0 ); /* IE6-9 */
}

.loginImage
{
    height: 100%;
    background: url("/Images/companyLogo.png") no-repeat;
    background-size: contain;
    background-position: center center;
}

.loginPanel {
	height: calc(100% - 96px - 16px);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.loginForm, .securityQuestionsForm, .recoverPasswordForm
{
    width: 100%;
    height: 100%;
	padding-left: 16px;
	padding-right: 16px;
}

.loginMessage
{
    text-align: center;
    font: normal 12pt "Verdana";
    color: #000;
}

.recoverPasswordMessage
{
    font: normal 12pt "Verdana";
    color: #000;
}

.loginMessage-Error
{
    text-align: center;
    font: normal 12pt "Verdana";
    color: #FF0A00;
}

.forgotPassword {
	font: normal 10pt "Verdana";
	color: #00A0FF;
}

.assistance
{
    display: inline-block;
    font: normal 10pt "Verdana";
    color: #000;
    text-align: left;
}

.buttonRow {
	text-align: center;
}

table.loginForm > tbody > tr:first-child > td
{
    height: 30%;
}

table.loginForm td {
	padding: 8px;
}

table.recoverPasswordForm td {
	padding: 4px;
}

table.securityQuestionsForm td {
	padding: 4px;
}

table.loginForm > tbody > tr:nth-child(2) > td
{
    height: 0;
    padding-bottom: 1px;
}

table.securityQuestionsForm > tbody > tr:nth-child(2) > td
{
    vertical-align: bottom;
}

table.loginForm > tbody > tr:nth-child(3) > td
{
    height: 0;
    padding-top: 1px;
}

table.loginForm > tbody > tr:last-child > td,
table.securityQuestionsForm > tbody > tr:last-child > td,
table.recoverPasswordForm > tbody > tr:last-child > td
{
    padding-bottom: 24px;
}

.headerText
{
    display: inline-block;
    font: normal 14pt/14pt "Titillium Web 700";
}

.securityQuestion, .message
{
    display: inline-block;
    font: normal 12pt "Verdana";
    color: #000;
}

.securityAnswer > .Label
{
    margin-bottom: 6px;
    text-align: left;
}

.securityAnswer > .TextBox
{
    width: calc(100% - 16px);
}

.securityQuestionsPanel
{
    width: 100%;
    color: #000;
    font: normal 10pt "Verdana";

    height: calc(100% - 96px - 16px);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.changePasswordPanel
{
    /* prevent size from changing from any borders or padding */
	padding: 10px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    font: normal 10pt "Verdana";

    height: calc(100% - 96px - 16px);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.LoadingImage 
{
	position: fixed; 
	top: 50%; 
	left: 50%; 
	margin-left: -64px; 
	margin-top: -64px;
	opacity: 1;
	z-index: 9999;	
}