.bg-bottom {
  background-color: #D8D8D8;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  z-index: -1;
}

DIV.form-1 {
    width: 340px;
	height:380px;
    padding: 15px;
    position: relative;
	border: 1px solid #999;
    border-radius: 4px;	
    color: #7e7975;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";/* IE 8 */
    filter: alpha(opacity=90);/* IE 5-7 */
    opacity: 0.9;  /* Other browsers */
	background-color: white;
	box-shadow:
        0 2px 5px rgba(0,0,0,0.2),        
        0 1px 5px rgba(0,0,0,0.2),        
        0 0 0 5px rgba(255,255,255,0.4);
}

.form-1 h1 {
    font-size: 17px;
    font-weight: bold;
    color: #555350; 
    padding-bottom: 8px;    
    text-shadow: 0 2px 0 rgba(255,255,255,0.8);
    box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.form-1 h2 {
    font-size: 12px;
    color: #555350; 
    padding-bottom: 8px;    
    text-shadow: 0 2px 0 rgba(255,255,255,0.8);
    box-shadow: 0 1px 0 rgba(255,255,255,0.8);
}

.form-1 .options {
    text-align: right;
	margin-top: 10px;

    margin-right: 3px;
}

.form-1.float {
    width: 50%;  
    padding-top: 15px;  
}

.form-1.float:first-of-type {
    padding-right: 5px;
}

.form-1.float:last-of-type {
    padding-left: 5px;
}

.form-1 label {
    display: block;
	margin:10px;
    padding: 0 0 5px 2px;
    cursor: pointer;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    font-size: 14px;
}

.form-1 input.logintext,input.loginpassword{
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 13px;
	font-weight: 400;
    width: 95%;
	padding: 5px;
    margin-bottom: 5px;
    border: 3px solid #ebe6e2;
	border-radius: 5px;
}

.form-1 input.logintext:hover,input.loginpassword:hover {
    border-color: #CCC;
}

.form-1 input.logintext:focus, input.loginpassword:focus {
    border-color: #BBB;
    outline: none; /* Remove Chrome's outline */
}

.form-1 label:hover ~ input {
    border-color: #CCC;
}

.form-1 input.loginSubmit {
    /* Size and position */
    width: 29%;
    height: 35px;
    float: right;
    position: relative;
	margin-right:15px;

    /* Styles */
    box-shadow: inset 0 1px rgba(255,255,255,0.3);
    border-radius: 5px;
    cursor: pointer;

	/* Font styles */
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 14px;
    line-height: 22px; /* Same as height */
    text-align: center;
    font-weight: bold;
    
}

.form-1 input.loginSubmit {
    margin-left: 1%;
    background: red; /* Fallback */
    background: -moz-linear-gradient(#F64D55, red);
    background: -ms-linear-gradient(#F64D55, red);
    background: -o-linear-gradient(#F64D55, red);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#F64D55), to(red));
    background: -webkit-linear-gradient(#F64D55, red);
    background: linear-gradient(#F64D55, red);
    border: 1px solid red;
    color: white;
    text-shadow: 0 1px rgba(255,255,255,0.3);
}

.form-1 input.loginSubmit:hover {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.3), 
        inset 0 20px 40px rgba(255,255,255,0.15);
}

DIV.msg-box {
    width: 90%;
	margin-right:15px;
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 12px;
    padding: 15px;
    position: relative;
	border: 1px solid #FF0000;
    border-radius: 4px;	
    color: #7e7975;
	background-color: #fef5f5;
    box-shadow:
        0 2px 2px rgba(0,0,0,0.2),        
        0 1px 5px rgba(0,0,0,0.2),        
        0 0 0 12px rgba(255,255,255,0.4); 
}
