@font-face {
  font-family: 'ProximaNova';
  src: url('/assets/fonts/proximanova-reg-webfont.woff') format('woff'), url('/assets/fonts/proximanova-reg-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}

@font-face {
  font-family: 'ProximaNova';
  src: url('/assets/fonts/proximanova-regit-webfont.woff') format('woff'), url('/assets/fonts/proximanova-regit-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap; 
}

@font-face {
  font-family: 'ProximaNova';
  src: url('/assets/fonts/proximanova-bold-webfont.woff') format('woff'), url('/assets/fonts/proximanova-bold-webfont.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap; 
}

@font-face {
  font-family: 'ProximaNova';
  src: url('/assets/fonts/proximanova-boldit-webfont.woff') format('woff'), url('/assets/fonts/proximanova-boldit-webfont.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap; 
}

@font-face {
  font-family: 'ProximaNova';
  src: url('/assets/fonts/proximanova-sbold-webfont.woff') format('woff'), url('/assets/fonts/proximanova-sbold-webfont.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap; 
}

html, body {
  margin: 0;
  height: 100vh;
  background: black url("/assets/imgs/loginbg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  font-family: 'ProximaNova', Helvetica, Arial, sans-serif;
}

.logincontent {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  background: black;
  z-index: 1000;
}

.colorbars {
  width: 100%;
  height: 10px;
  display: flex;
}

.colorbars div {
  flex: 1;
}

.colorbars .white {
    background: #ffffff;
}

.colorbars .yellow {
    background: #f2e94e;
}

.colorbars .cyan {
    background: #5fd3e4;
}

.colorbars .green {
    background: #64e84f;
}
    
.colorbars .pink {
    background: #d73fd3;
}
    
.colorbars .red {
    background: #ff2d20;
}
    
.colorbars .blue {
    background: #1c1cff;
}

.headerrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}

.logo {
  flex: 0 0 auto;
  pointer-events: none;
}

.divider {
    width: 1px;
    height: 160px;
    background-color: #A7A7A7;
    margin: 0 20px;
}

.loginInput {
    height: 22px;
    padding-left: 5px;
}

.loginBtn {
	box-shadow:inset 0px 1px 0px 0px #9acc85;
	background:linear-gradient(to bottom, #74ad5a 5%, #68a54b 100%);
	background-color:#74ad5a;
	border:1px solid #3b6e22;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:13px;
	font-weight:bold;
	padding:6px 12px;
	text-decoration:none;
}

.loginBtn:hover {
	background:linear-gradient(to bottom, #68a54b 5%, #74ad5a 100%);
	background-color:#68a54b;
}

.loginBtn:active {
	position:relative;
	top:1px;
}

.loginDivider {
    width: 100%;
    height: 1px;
    background-color: #5E5E5E;
    margin: 15px 0;
}

.login p {
    margin-top: 0;
    margin-bottom: 10px;
}