body{
     font-family: "Nunito", sans-serif;
    
    
}



.logo{
    /*background: url(../images/assetNestLogo600.png) no-repeat;*/
 
    
     width: 100%;
  max-width: 300px;          /* never grow larger than its real size */
  aspect-ratio: 1 / 1;       /* keeps it square responsively */

  margin: 30px auto;            /* center horizontally */

  background-image: url('../images/assetNestLogo6003.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;

  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  display: block;


    
    
}

    

.main-content{
	width: 40%;
	border-radius: 20px;
	box-shadow: 0 0px 20px rgba(0,0,0,.2);
	margin: 5em auto;
	display: flex;
}
.company__info{
	background-color: #008080;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	/*display: flex;
	flex-direction: column;
	justify-content: center;
        */
	color: #fff;
}
.fa-android{
	font-size:3em;
}
@media screen and (max-width: 640px) {
	.main-content{width: 90%;}
	.company__info{
		display: none;
	}
	.login_form{
		border-top-left-radius:20px;
		border-bottom-left-radius:20px;
	}
}
@media screen and (min-width: 642px) and (max-width:800px){
	.main-content{width: 70%;}
}
.row > h2{
	color:#008080;
}
.login_form{
	background-color: #fff;
	border-top-right-radius:20px;
	border-bottom-right-radius:20px;
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
}
form{
	padding: 0 2em;
}
.form__input{
    margin-right: 5px; display: inline-block; font-size: 14px; border-radius: 5px; border: 2px solid #000;         
    
	width: 100%;
	
	padding: 1em .5em .5em;

	
	transition: all .5s ease;
}
.form__input:focus{
	border-bottom-color: #008080;
	box-shadow: 0 0 5px rgba(0,80,80,.4); 
	border-radius: 4px;
}
.btn{
    
    /*
	transition: all .5s ease;  
	width: 70%;
	border-radius: 30px;
	color:#008080;
	font-weight: 600;
	background-color: #fff;
	border: 1px solid #008080;
	margin-top: 0px;
	margin-bottom: 1em;
        */
}


.btn:hover, .btn:focus{
	background-color: #008080;
	color:#fff;
}