.loginmodal{
    display: none; 

    position: fixed; 
     
    z-index: 9999;
    top: 0;
    left:0;
    width: 100%;
    height: 100%; 
    overflow: auto; 
    
    background-color: rgba(0,0,0,0.4);
    }
    
    
    #login_modal-content {
    z-index: 9999;
    width:450px;
    height:650px;
    background-color: #fefefe;
    padding: 40px;
    box-shadow: 0 0 5px rgb(0,0,0,0.3);
        
    position: fixed;
    top:50%;
    left:50%;
    display: none;
    box-sizing: border-box;
    }
.login_form_top{
    width:100%;
    height:150px;
    text-align: center;
    margin-bottom: 50px;
}
.login_logo{
    width:200px;
    height:100px;
    display: inline-block;
    background:url('img/logo.png')  no-repeat center / contain ;

}
.login_form_top > p {
    margin-top:20px;
    font-weight: bold;
    font-size: 25px;
}
.login_info_wrap{
    width:100%;

}
label{
    display: inline-block;
    width:140px;
}
label  > p{
    font-size: 14px;

    margin-left:30px;
  
}
input[type="text"],input[type="password"]{
    width:50%;
    height:40px;
    margin:10px 0 10px;
    padding:8px;
    box-sizing: border-box;
    border: 1px solid #d3d3d3;
}
input[type="checkbox"]{
    width:18px;
    height:18px;
    vertical-align: middle;
    margin-left:20px;
}
p.remember{
    display: inline-block;
    width:130px;
   
    color:#393939;
    vertical-align: middle;
    font-size: 14px;
}
p.find{
    /* display: inline-block; */
    width:180px;
    color:#393939;
    float: right;
    text-align: right;
    cursor: pointer;
    font-size: 14px;
    margin-right: 20px;
    box-sizing: border-box;
}
p.find:hover{
    text-decoration: underline;
}
.center_align{
    margin-top:25px;
    width:100%;
    text-align: center;
 
}
.login_btn{
    display: inline-block;
    width:250px;
    height:40px;
    background:#000;
    color:#fff;
    border:none;
 
}
.login_signup{
    font-size:14px;
    margin-top:15px;
    color:#333;
    text-decoration: underline;
    cursor: pointer;
       margin-top:40px;
}
.modalclose {
color: #aaa;
position: absolute;
top:-3px;
right:10px;
float: right;
font-size: 30px;
font-weight: bold;
cursor: pointer;
}
