@charset "utf-8";
/* CSS Document */
.title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-large;
	font-weight: bold;
	color:#e1f9f9;
}
.error {
	font: normal 14px tahoma, arial, helvetica, sans-serif;
	color: #FF3333
}
.message_red {
	color: #CC3300;
	font-weight: bold;
}
.loginerror {
	font: normal 14px tahoma, arial, helvetica, sans-serif;
	color: #FF3333
}
body {
	background-image: url();
	background-repeat: no-repeat;
}
.name {	color:#e1f9f9;
	font: normal 13px tahoma, arial, helvetica, sans-serif;
	font-weight: bold; 
}
.text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: large;
	font-weight: bold;
	color:#e1f9f9;
}
.fieldname{
	color:#e1f9f9;
	font: normal 13px tahoma, arial, helvetica, sans-serif;
}
.copyright{
	color:#e1f9f9;
	font: normal 13px tahoma, arial, helvetica, sans-serif;
}
#password_description
{
	font-size: 12px;	
}

#password_strength
{
	height:10px;
	display:block;
}

#password_strength_border
{
	width: 100px;
	height: 10px;
	border: 1px solid white;
}
.strength0
{
	width:100px;
	background:#cccccc;
}

.strength1
{
	width:40px;
	background:#ff0000;
}

.strength2
{
	width:60px;	
	background:#ff5f5f;
}

.strength3
{
	width:100px;
	background:#56e500;
}

/* tool-tip style begin */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  /*background-color: black;*/
  background-color: #0ebdb9;
  color: #212a2a;
  text-align: center;
  border-radius: 12px;
  padding: 7px 2px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -70px;
  font: normal 11px tahoma, arial, helvetica, sans-serif;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -26px;
  border-width: 5px;
  border-style: solid;
  border-color: #0ebdb9 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
/* tool-tip style end */

#rootdiv{
	position:absolute;
	margin:0% 0% 0% 0 %;
	padding:0% 0% 0% 0%;
}
.rootdivstl{
	position:absolute;
	margin:0% 0% 3% 3%;
	padding:1% 1% 1% 1%;
}
#apDiv1 {
	position:absolute;
	width:913px;
	height:559px;
	z-index:0;
	background-color:#FFFFFF;
	vertical-align: middle;
}
#apDiv2 {
	position:absolute;
	left:525px;
	top:15px;
	width:364px;
	height:116px;
	z-index:2;
	visibility: inherit;
	float: inherit;
}
#apDiv3 {
	position:absolute;
	left:554px;
	top:15px;
	width:310px;
	height:58px;
	z-index:1;
}
.td_back {
	background-image: url(images/text.png);
	height: 22px;
	width: 135px;
}
.star {
	color: #FF0033;
	font-weight: bold;
}

.input_text {
	border: 0;
	width:110px;
	margin-top:1px;
	margin-left:10px;
}
input.custombutton
{
	background-color:#000000;
	width:56px;
	height:21px;
	background-image:url(images/signin_small.png);
	border-top-style:none;
	border-bottom-style:none;
	border-left-style:none;
	border-right-style:none;
	cursor:pointer;
}
input.regbutton
{
	background-color:#000000;
	width:185px;
	height:22px;
	background-image:url(images/submitforreg.png);
	border-top-style:none;
	border-bottom-style:none;
	border-left-style:none;
	border-right-style:none;
	cursor:pointer;
}
input.resetbuton {	
	background-color:#000000;
	width:139px;
	height:22px;
	background-image:url(images/resetpassword.png);
	border-top-style:none;
	border-bottom-style:none;
	border-left-style:none;
	border-right-style:none;
	cursor:pointer;
}
input.changebutton{      
                background-color:#000000;
                width:139px;
                height:23px;
                background-image:url(images/changepassword.png);
                border-top-style:none;
                border-bottom-style:none;
                border-left-style:none;
                border-right-style:none;
                cursor:pointer;
}

a {font: normal 13px tahoma, arial, helvetica, sans-serif;}
a:link {color:#e1f9f9;}
a:visited {color: #e1f9f9;}

/* style class added for captcha refresh button */
.refreshbutton {
    color: #f56906;
    font: normal 11px tahoma, arial, helvetica, sans-serif;
}
/* Signup.jsp Form fileds border red upon validation errors*/
.borderRed {
	border: 3px double red; /* Can use 'ridge' or 'solid' etc */
}

  #cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.95); /* Dark gray with slight transparency */
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 1000; /* Ensure it appears on top of other elements */
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.5); /* Adds a subtle shadow for depth */
    font-family: Arial, sans-serif;
    display: none; /* Hidden by default */
}

#cookieConsent button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px; /* Rounded corners */
}

#cookieConsent button:hover {
    background-color: #45a049;
