/* La clase del contenedor Principal de los input y span */
/*.cont {
	position: relative;
	width: 185px;
	margin: 0 auto;
}*/
/* El ID del Input Password */
#pass {
	width: 290px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	outline: none;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
/* Especificamos el color del borde y sombra al hacer click al input */
#pass:focus {
	border-color: #39CCCC;
	box-shadow: inset 0 1px 1px rgba(0,0,0, .05),0 0 12px rgba(0,135,243, .5);
}
/* Especificamos la ubicacion de la Imagen(ojo) */
#change {
	position: absolute;
	width: 32px;
	height: 32px;
	right: 0;
	top: 2px;
}
/* Ojo por defecto */
#change.eye {
	background: url("../img/eye1.png");
	background-size: cover;
}
/* Ojo Nuevo */
#change.eye2 {
	background: url("../img/eye2.png");
	background-size: cover;
}

/* Aqui empieza el Input Transparente*/

/* Contenedor Principal del input transparente */
.cont2 {
	position: relative;
	margin: 5px auto;
	width: 185px;
}
/* Especificamos el fondo transparente al input */
.cont2 #pass {
	background: transparent;
}