﻿.mylogindialog 
{
    
}
.notify {
    background-color:red;   
    color:white; 
    margin:auto;
    margin-top:20px;    
    font-family:Arial;
    padding:3px;
    box-shadow:1px 1px 7px 7px red;   
    border-radius:15px;    
    cursor:pointer;   
    max-width:300px;
    text-align:center;  
    opacity:0;
    top:10px;
    position:relative;  
    transition:all 2s ease;
     
}

/*.myloginfooter 
{
    line-height: 24px;
	font-size: 11px;
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	z-index: 9999;
    text-align:right;
	position:fixed;
    padding-right:15px;    
    width:100%;
    color:maroon;
	font-family: Cambria, Georgia, serif;
	box-shadow: 1px 0px 2px rgba(0,0,0,0.2);
    bottom:0px;   
}*/
.myloginfooter 
{  
	
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
    /*background-color:gray;*/	
    text-align:center;
	position:fixed;       
    width:100%;   
    height:57px;
	font-family:'Lucida Console' ;
	box-shadow: 1px 0px 2px rgba(0,0,0,0.2);  
    top:0px;   
   /*opacity:0.6;*/  

}

.thislogintrans0 {
    opacity: 0;
}
.thislogintrans1 {   
    opacity: 1;
    -webkit-transition: opacity 1.5s ease-in;
    -moz-transition: opacity 1.5s ease-in;
    -o-transition: opacity 1.5s ease-in;
    -ms-transition: opacity 1.5s ease-in;
    transition: opacity 1.5s ease-in;
}
.fflogoforfooter {
    float:right;
    bottom:0px;
    margin:auto;    
}
.LoginBox {
    /* Size & position */
    width: 300px;
    
    margin:  auto ;
    padding: 10px;
    height:75px;
    position: relative; /* For the submit button positioning */
   
    /* Styles */
    box-shadow: 
        0 0 1px rgba(0, 0, 0, 0.3), 
        0 3px 7px rgba(0, 0, 0, 0.3), 
        inset 0 1px rgba(255,255,255,1),
        inset 0 -3px 2px rgba(0,0,0,0.25);
    border-radius: 5px;
    background: white; /* Fallback */
    background: -moz-linear-gradient(#eeefef, #ffffff 10%);
    background: -ms-linear-gradient(#eeefef, #ffffff 10%);
    background: -o-linear-gradient(#eeefef, #ffffff 10%);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#eeefef), color-stop(0.1, #ffffff));
    background: -webkit-linear-gradient(#eeefef, #ffffff 10%);
    background: linear-gradient(#eeefef, #ffffff 10%);
}