body {
    animation: fadeInAnimation ease 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.main-content{
	width: 50%;
	border-radius: 20px;

	margin: 8em auto;
	display: flex;
}
.company__info{
	background-color: #ffffff;
	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-radius: 20px;
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
}
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:1em auto;
	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: 1.5em;
	margin-bottom: 1em;
}
.btn:hover, .btn:focus{
	background-color: #008080;
	color:#fff;
}
.hvr-red:hover {
    color: #ed2124 !important;
}

.form-control:focus {

    box-shadow: unset !important;
}
.login-bg{

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/themes/default/images/logins.jpg);
    margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
@media only screen and (max-width: 600px) {
    .main-content {
        width: 80%;
        margin: 10em auto;

    }
}

@media only screen and (min-width: 601px) and (max-width:766px) {

    .main-content {
        width: 80%;
        margin: 10em auto;

    }
    }
@media(min-width: 992px) and (max-width:1199px) {
    .main-content {
        width: 80%;
        margin: 10em auto;

    }

    }
