
/* Login page */
.accountLoginTable { 
    margin-top: 50px;
    width: 350px;
    text-align: center;
   
}
.accountLoginCell { 
    padding: 10px; 
    /* */
    border: solid #555555 1px; 
    background-color: #FBFBFB; 
    /* */
    text-align: center;
}



/* Login page */
.accountLoginTable_nobord { 
    margin-top: 50px;
   /* width: 350px; */
   	width: 96%;
    text-align: center;
}
.accountLoginCell_nobord { 
    padding: 10px; 
    text-align: center;
	border: none;
	/*
    border: solid #80CBC4 1px;
    border-radius: 5px;
    -moz-border-radius: 5px; 
	background-color: #000000;
	*/
}

/* table containing vertical-separator (if any) and login text */
TABLE.accountLoginContentTable {
    width: 100%;
    text-align: center; /* left; */
    color:#FFFFFF;
   
}

/* vertical separator (if any) */
TD.accountLoginVertSepCell {
    width: 10px;
    height: 100%;
    padding-right: 12px;
}

TD.accountLoginTextCell {
    width: 100%;
    text-align: center; /* left; */
}

/* Login form table */
TABLE.accountLoginFormTable {
    /* */
    padding-left:35px;
    
    /* */
}
TD.accountLoginFieldLabel {
    padding-top: 4px;
    padding-right: 4px;
    text-align: left;
    font-size: 9pt;
    color:#FFFFFF;
}
TD.accountLoginFieldValue {
    padding-top: 4px;
}
TD.accountLoginFieldValue INPUT {
    line-height: 2;
}

.loader {
  margin-top: 20px;
  border: 16px solid #ffffff;
  border-radius: 50%;
  border-top: 16px solid #b96a44;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.centerPage{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
	-webkit-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
	-moz-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
	-ms-transform: translate(calc(-50% + 0.5px), calc(-50% + 0.5px));
	color:white;
	font-size: 18pt;
	font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}