.main-content{
	width: 50%;
	border-radius: 20px;
	box-shadow: 0 5px 5px rgba(0,0,0,.4);
	margin: 10em auto;
	display: flex;
}
.company__info{
	background-color: #0787d3;
	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:#0787d3;
	font-weight: 900;
}
.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;
	padding: 40px;
}
form{
	padding: 0 2em;
}
.form__input{
	width: 100%;
	border:0px solid transparent;
	border-radius: 0;
	border-bottom: 1px solid #aaa;
	padding: 1em .5em .5em;
	padding-left: 2em;
	outline:none;
	margin:1.5em auto;
	transition: all .5s ease;
}
.form__input:focus{
	border-bottom-color: #0787d3;
	box-shadow: 0 0 5px rgba(0,80,80,.4); 
	border-radius: 4px;
}
.submit-btn{
	transition: all .5s ease;
	width: 100%;
	border-radius: 30px;
	color:#0787d3;
	font-weight: 600;
	text-transform: uppercase;
	background-color: #fff;
	border: 1px solid #0787d3;
	line-height: 38px;
	margin-top: 1.5em;
	margin-bottom: 1em;
}
.submit-btn:hover, .submit-btn:focus{
	background-color: #0787d3;
	color:#fff;
} 
.modal .modal-header .close{
	border: 0px;
	background: transparent;
	font-size: 28px;
}
.img_group_wrapped {
	position: relative;
	width: 300px;
	height: 250px;
	background: #f2f2f2;
	overflow: hidden;
	margin-bottom: 12px;
	-webkit-border-radius: 0.5em;
} 

.img_group_wrapped img  {
	display: block;
	width: 100%;
	-o-object-fit: cover;
	-o-object-position: top;
}
@supports (object-fit: cover) {
  .img_group_wrapped img {
    width: 300px;
    height: 100%;
    object-fit: cover;
    -o-object-position: center;
  }
}

.readmore {
	background: #66a74b;
	color: #fff;
}