/*
 This CSS class we are using for Sign up, Login, Forget password Screens
*/


html,body,.hbox_container
{
    height:100%;
}
	
.hbox_container
{
    display:table;
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.row
{
    height: 100%;
    display: table-row;
}

.link{
 color:#0000EE;
}

.w-xxxl {
    width: 400px;
}

.form-control-custom{
	height:40px;
	border-radius:5px;
	
}

.btn-md-base{
	border-radius: 5px;
	font-size: 16px;
	padding:8px
}

.text-xs-custom{
		font-size: 11px;
}
  
  
@media (min-width: 780px) {
	.row .no-float {
	     display: table-cell;
	     float: none;      
	}
	  
	.aside-img-div{
	  	bottom:0;
	  	left:0;
	  	position:fixed;
	  	height:350px;
	  	width:100%
	}
	  
	.sign-title{
	  	margin-top:-40px;
	}
	  
	.desktop-view{
		 display:block;
	}
	  
	.mobile-view{
	  	 display : none;
	}
  
}

@media (max-width: 780px){
	
	body{
		background-color:#fff;
	}

	.top-mobile {
	    display: flex;
	}
	
	.col-md-4{
		display:none;
	}
	
	.desktop-view{
		display:none;
	}
	
	.mobile-view {
		display: block;
	}
	
	

}