﻿body
{
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size:calc(.5em+1vw);
}
h1
{
	color:Purple;
	margin:0px;
}
h2
{
	color:Black;
	margin-top:5px;
	font-weight:normal;
}
div.header
{
	position: fixed;
	height: 5%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #333333;
	border-bottom-style: solid;
	border-bottom-width: 2px;
	border-bottom-color: #FF9900;
	vertical-align:middle;
	padding-left: 5%;
	font-family: Verdana;
}

div.workarea
{
	/*height: 75%;
	width:100%;*/
	text-align:center;
	vertical-align:middle;
}
div.signin {
	border-radius: 5px;
	box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.5);
	position: absolute;
	top: calc((100vh - 420px)/2);
	left: calc((100vw - 314px)/2);
	margin: auto;
	margin-top: -100px; /* this is half the height of your div*/
	margin-left: -100px; /*this is half of width of your div*/
	justify-content: center;
	align-items: center;
	text-align: justify;
	min-height: 420px;
	max-height:420px;
	min-width:314px;
	max-width:314px;
/*	height: 44vh;
	width: 18vw;*/
	padding: 40px;
}
div.forgot
{
	border-top: 1px solid Red;
	margin-top: 60px;
	padding-top: 10px;
	height: 20px;
	border-top-color: #C0C0C0;
	font-size: 14px;
}
.forgot_link
{
	text-decoration: none;
	font-style: italic;
	text-decoration: underline;
	color: #336699;
}

div.footer
{
	position:fixed;
	bottom:0;
	left:0;
	height: 5%;
	width: 100%;
	background-color: #333333;
	border-top-style: solid;
	border-top-width: 2px;
	border-top-color: #FF9900;
	padding-left: 5%;	
	vertical-align:top;
}
.head_co
{
	font-size: 24px;
	color: Red;
	font-weight: bold;
	letter-spacing: .25em;
}
.head_seperator
{
	font-size: 24px;
	color: #999999;
	letter-spacing: .25em;
}
.head_info
{
	font-size:18px;
	color:White;
}
.foot_info
{
	font-size:11px;
	color:White;
}
.ac_name
{
	font-size:18px;
	padding:5px 0px 5px 0px;
}
.img_question
{
	width:16px;
	height:16px;
}
.button_next
{
	border:none;
	background-color:Black;
	border-radius: 5px;
	color:White;
	width:60px;
	height:30px;
}

.button_next:hover
{
	background-color: #666666;
}
.error_label
{
	color:red;
	margin-top:5px;
	font-size:11px;
}
.email
{
	font-size:14px;
	padding:5px 0px 5px 0px;
}

.button_email
{
	border:none;
	background-color:Black;
	border-radius: 5px;
	color:White;
	width:100px;
	height:30px;
}
.button_email:hover
{
	background-color: #666666;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 175px;
  background-color: black;
  color: #fff;
  font-size:12px;
  text-align:left;
  border-radius: 6px;
  padding:10px;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}