.login-body {
	top: 200px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 600px;
}

.login-body span {
	font-size: 15px;
}

.login-body-cont {
	width: 400px;
}

.form-login {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}

.login-body h2 {
	color: var(--naranja-color);
}

.form-login label {
	font-weight: bold;
	font-size: 13px;
}

.cf-fila {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-bottom: 10px;
	width: 100%;
}

.input_class[type=text], .input_class[type=password], .input_class[type=number], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.login-opciones {
	width: 320px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.login-botones {
	width: 320px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.cf-button-login {
	width: 80px;
	border-radius: 5px;
	background-color: var(--azul-color);
	border-color: var(--azul-color);
	cursor: pointer;
	color: white;
	font-weight: bold;
	padding: 5px;
	font-size: 17px;
}

.cf-button-login-face {
	text-decoration: none;
	width: 200px;
	border-radius: 5px;
	background-color: var(--azul-color);
	border-color: var(--azul-color);
	cursor: pointer;
	color: white;
	font-weight: bold;
	padding: 5px;
}

.cf-button-login-face i{
	margin-right: 15px;
}

@media only screen and (max-width: 590px) {  

	.login-body {
		top: 80px;
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

	.login-body-cont {
		width: 96%;
	}
	
	.login-body span {
		font-size: 15px;
	}

	.login-botones {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	#email-login, #user-pw-login {
		width: 93%;
	}

	.cf-button-login {
		width: 100%;
	}

	.cf-button-login-face {
		margin-top: 10px;
		width: 97%;
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

	.cf-button-login-face i {
		margin-right: 10px;
	}
}