:root {
    --orange: #ff5722;
    --orange-light: #fa7248;
    --blue: #607d8b;
    --blue-light: #cfd8dc;
    --white: #fafafa;
    --jm-fonts: "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  }
  
/* LOGIN / LOGOUT ELEMENTS */

.pass-reset-container label {
	font-size: 16px;
}

#pass-reset-form ul li {
	color: gray;
	font-size: 10px;
}

#login-error {
	width: 100%;
	text-align: center;
	color: red;
}

#login-body {
	background: #7193a4;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
}

#login-banner {
	background-color: #2196f3; 
	color: white; 
	padding: 10px 20px; 
	text-align: center;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-sizing: border-box;
}

.login-container {
	margin-top: 60px;
    align-items: center;
    background: white;
    border-radius: 7px 7px 5px 5px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
    font-size: 16px;
    justify-content: center;
    width: 300px;
}

.login-container header {
	background: var(--orange);
	border-radius: 5px 5px 0px 0px;
	color: white;
	font-family: var(--jm-fonts);
	font-size: 1.2em;
	font-weight: 500;
	padding: 10px 20px;
}

.login-body-container {
	margin: 20px;
}

.login-body-container label {
	display: inline-block;
	margin-top: 5px;
	margin-bottom: 5px;
}

.login-body-container .login-field {
	border: 1px solid #ccc;
	border-radius: 3px;
	display: block;
	font-size: 1em;
	height: 28px !important;
	outline: none;
	padding: 5px 5%;
	width: 232px;
}

.login-btn {
	line-height: 14px;
	margin-top: 25px;
	margin-bottom: 5px;
	margin-left: 0px;
	outline: none;
	padding: 5px 0px;
	text-align: center;
	text-decoration-line: none;
	transition: all 0.15s ease-in-out;
	width: 100%;
}

#login-form .help {
	font-size: 0.8em;
	color: #777;
}

.login-link {
	color: #3778c4;
	font-weight: 500;
}

.login-link:hover {
	text-decoration: underline;
}

.login-text {
	font-size: 14px;
}

.jm-btn {
    background-color: var(--orange);
	border-radius: 3px;
	border: 0px; 
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-family: "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	height: 36px;
	letter-spacing: 0.5px;
	line-height: 36px;
	overflow: hidden;
	padding: 0 16px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	transition: 0.3s ease-out;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	vertical-align: middle;
	z-index: 1;
}

.jm-btn:hover {
	background-color: var(--orange-light);
}
