.login-contenedor{
	position: relative;
	width: 768px;
	height: 500px;
	border: 1px solid #ddd;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	padding: 0px 0px;
	margin-top: 100px;
	margin-bottom: 40px;
	/*box-shadow: 1px 1px 3px #bbb;*/

}

.login-circulo{
	position: absolute;
	width: 120px;
	top: 50%;
	margin-top: -60px;
	left: 30%;
	margin-left: -60px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
	z-index: 2;
}

.login-izq{
	width: 0%;
	height: 100%;
	background-color: #e1e2e7;
	background-color: #534f8a;
	transition: all 0.5s;
}

.login-izq>img{opacity: 0.8; overflow: hidden;}

.login-der{
	width: 70%;
	height: 100%;
	background-color: #fff;
	text-align: center;
	z-index: 1;
}

.linea{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.logo-input{
	width: 50px;
	height: 50px;
	background-color: #e1e2e7;
}

.linea>input{
	width: 50%;
	border: 1px solid #e1e2e7;
	outline: none;
	padding: 0px;
	border-radius: 0px;
	text-indent: 10px;
	font-family: calibri;
}

.linea>input::placeholder{
	color: #bbb;
}

.login-div-btn{
	margin-top: 50px;
}

.login-boton{
	text-decoration: none;
	padding: 10px 20px;
	background-color: #e1e2e7;
	color:  #57585d;
	font-family: calibri;
	border-radius: 5px;
	border: 1px solid #57585d;
	transition: all 0.3s;
}

.login-boton:hover{
	background-color: #57585d;
	color: #fff;
}


@media screen and (max-width: 768px){
	.login-contenedor{
		width: 90%;
	}

	.login-circulo{
		width: 80px; margin-left: -40px; margin-top: -40px;
	}
}

@media screen and (max-width: 550px){
	.login-circulo{
		top: 0%;
		margin-top: 10px;
		left: 65%;
		margin-left: -40px;
	}
}