﻿body {
    font-family: 'Open Sans',Verdana,sans-serif;
    margin: 0;
    height: 100vh;
    width: 100%;
    background-color: #0080a6;
    display: block;
    color: white;
}


#banner {
	margin:  0;
	padding: 0;
	display: none;
	flex-direction:row;
	justify-content: space-between;
	width:100%;
	height:  100px;
	background:  linear-gradient(
		to bottom,
		#00274C 0%,
		#00274C 70%,
		#224474 70%,
		#224474 100%
	);
}

#banner #logo {
	margin-left: 15px;
	margin-top: 15px;
	height:  40px;
	overflow: visible;

}

#banner #tree {
	margin-right:  15px;
}


h1 {
    line-height: 1.5;
    font-weight: 700;
    font-size: 1.2rem;
}

p {
    font-weight: 400;
    font-size: 1.2rem;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.underline {
    text-decoration: underline;
    cursor: pointer;
}

#welcomeMsg {
    max-width: 50%;
}

.clickForLanguage{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 1rem;
}

.clickForLanguage a {
    color: #007bff;
    text-decoration: none;
}

.alert {
    position: relative;
    padding: .5rem 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #124A1D;
    background-color: #def8d7;
    border-color: #9af7ac;
}

.form-validator {
    margin: 0;
    font-size: .8em;
}

label {
    display: inline-block;
    font-weight: bold;
    margin: 0;
}

#logonForm {
    width: 250px;
    box-sizing: border-box;
    font-family: 'Open Sans',Verdana,sans-serif;
    margin: auto;
    color: black;
}

#logonForm input[type=text] {
    font-family: 'Open Sans',Verdana,sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    text-align: center;
    font-size: 1rem;
}


#logonForm input[type=password] {
    font-family: 'Open Sans',Verdana,sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    text-align: center;
    font-size: 1rem;
}

#logonForm input[type=submit] {
    font-family: 'Open Sans',Verdana,sans-serif;
    background-color: lightgray;
    border: 2px solid darkgray;
    font-weight: 700;
    margin-bottom: 1rem;
    border-radius: 3px;
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
}

#logonForm .pw-note {
    color: white;
    font-size:1rem;
    margin: 0;
}

#pwInfo {
    font-size: 1rem;
}

#togglePwContainer {
    display: flex;
    justify-content: center;
}

#togglePwLink {
    color: black;
    text-decoration: none;
    text-align: center;
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.highVolume {
    max-width: 50%;
    color: red;
}

.MaintenanceMsg {
    max-width: 50%;
    background-color: #ffffcc;
    color: black;
    padding: .5rem 1rem .5rem 1rem;
    border: 3px solid #00274C;
}

hr {
    display:none;
    background-color: #00274C;
    border: 0;
    height: 8px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

footer {
    display: flex;
    font-size: 12.8px;
    margin-bottom: 1rem;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background-color: #ffffff;
}

footer a {
    color: black;
    font-size: 1.2rem;
    padding-top: 1rem;
}

footer #copyright {
    display:none;
}

footer .hide-mobile {
    object-fit:contain;
    display:block;
    padding:1rem;
}

footer .hide-desktop {
    display:none;
}

.text-input {
    height: 2.5em;
}

.text-input-validator {
    color: black;
}
/* Smartphones ----------- */
@media  screen and (max-width: 600px) {
    #banner #logo {
        margin: 15px;
        width: calc(75% - 30px)
    }

    #banner #tree {
        margin-right: 15px;
    }

    #welcomeMsg {
        margin: auto;
        max-width: 90%;
    }

    #MsgWrapper:empty {
        display: none;
    }

    #logonForm input[type="text"] {
        height: 45px;
    }

    #logonForm input[type="submit"] {
        height: 45px;
    }

    footer .hide-mobile {
        display: none;
    }

    footer .hide-desktop {
        object-fit: contain;
        display: block;
        padding: 1rem;
    }
}