/*
//###############################################################################
//#   Library        : login.css                                                #
//#   Application    : MSFleet                                                  #
//#   Author         : John Rake                                                #
//#                                                                             #
//###############################################################################
//#
//# History
//# -------
//#
//# Date            Version         Name            Bug       Description
//# ----            -------         ----            -----     -----------
//# 19 Nov 2013     V1.0.JMR.0.0    John Rake       64327     Written
//# 17 Jan 2014     V1.0.JWM.1.0    Jared Marrs     67586     Added #blurb-warning and #blurb-bold
//# 02 Nov 2014     V1.0.RAB.2.0    Aaron Brooks    US13891   Fixed style issues caused by new code base screens
//# 07 Oct 2015     V1.0.KXH.2.1    Koji Hayakawa   US26128   Added customer service contact info
//# 12 Apr 2016     V1.0.KXH.3.0    Koji Hayakawa   US9966    Replaced Twitter with Promo Content
//# 09 Nov 2020     V2.0.KXH.0.0    Koji Hayakawa   FC-10790  Complete re-design
//##############################################################################
*/

/* CSS Reset */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* Global */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#PageContent {
    background-image: url(/images/application/hero_background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.PageHeader {
    background-color: white;
    position: fixed;
    width: 100vw;
    height: 72px;
    z-index: 100;
}

.PageHeader img {
    width: 450px;
    display: block;
    margin: auto;
    margin-top: 20px;
}

#PageContent_1 {
    display: grid;
    grid-template-rows: 120fr auto 273fr;
    grid-template-columns: 80px 364px auto;
    z-index: 50;
    position: fixed;
    width: 100vw;
    height: 100vh;
}

#FW_LOGIN_2 {
    grid-column: 2/3;
    grid-row: 2/3;
    background-color: rgba(255, 255, 255, 0.8);
}

#FW_LOGIN_1 {
    display: block;
    width: 100%;
}

#FW_LOGIN_1 div.CanvasStateFields {
    display: none;
}

#CanvasContent_1 {
    display: grid;
    grid-template-rows: repeat(4, auto);
    row-gap: 25px;
}

#CanvasContent_1 .Label {
    display: none;
}

#Login_Title {
    font-size: 18pt;
    text-align: center;
}

#LoginTitle_1 {
    margin-top: 25px;
}

#MainLoginForm_1 {
    display: grid;
    row-gap: 25px;
}

#FW_LOGIN_1 div {
    margin: auto;
}

#CanvasContent_1 div {
    width: 286px;
    margin: auto;
}

#FW_LOGIN_1 input[type=text], #FW_LOGIN_1 input[type=password] {
    font-size: 16pt;
    width: 270px;
    background-color: white;
    padding: 14px 8px;
    border: none;
}

#FW_LOGIN_1 input.error {
    padding: 13px 7px;
    border: 1px solid red;
}

#FW_LOGIN_1 input[type=submit] {
    font-size: 18pt;
    color: white;
    background-color: #ff981f;
    padding: 14px 0;
    border: none;
    width: 286px;;
}

#LoginTitle_1 .Messages {
    margin-top: 20px;
    font-size: 12pt;
}

#LoginTitle_1 .Messages .Error {
    color: red;
}

#LoginTitle_1 .Messages .Info {
    color: #3a87ad;
}

#UserPasswordResetLink_1 a {
    color: black;
}
#PageFooter_1 {
    position: fixed;
    bottom: 0;
    display:grid;
    grid-template-columns: repeat(3, auto);
    padding: 15px 0;
    height: 18px;
    width: 100%;
    background-color: white;
    z-index: 100;
}
#PageFooter_1 div {
    text-align: center;
}


/* Media Queries */
@media (max-width: 1280px) {
    #PageContent_1 {
        background-size: 1280px 800px;
    }
}

/* small computer screen */
@media only screen and (max-width: 900px) {
    #PageContent {
        background-size: cover;
    }
    #PageFooter_1 {
        margin-top: 25px;
        grid-template-columns: auto;
        row-gap: 25px;
        padding-bottom: 30px;
        height: 104px;
    }
}

/* mobile devices */
@media only screen and (max-device-width: 900px) {
    .PageHeader img {
        width: 95%;
    }

    #PageContent {
        background-size: cover;
    }

    #PageContent_1 {
        grid-template-rows: 180fr auto 270fr;
        grid-template-columns: auto 320px auto;
        z-index: 50;
        position: fixed;
        width: 100vw;
        height: 100vh;
    }

    #PageFooter_1 {
        margin-top: 0;
        grid-template-columns: auto;
        row-gap: 20px;
        padding-bottom: 20px;
        height: auto;
        font-size: 11pt;
    }
}

@media only screen and (max-device-width: 500px) {
    #PageContent {
        background-size: cover;
        background-image: url(/images/application/hero_background_mobile.png);
    }

}
