@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
.titul{
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 30PX;
	color: skyblue;
}
.botoncito{
	position: absolute;
	top: 60px;
	right: 0px;
	background-color: #1735e2;
	border: none;
	color: white;
	text-decoration: none;
	margin: 2px 2px;
	cursor: pointer;
	width: 40%;
  }
  .botons{
	padding: 3px;
	background-color: #ee8d0f;
	border: none;
	color: white;
	text-decoration: none;
	margin: 2px 2px;
	cursor: pointer;
  }

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}
body{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	/*background: #0b1721;*/
	background: url(../menu/img/fondo.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.form{
	width: 100%;
	height: 50px;
	max-width: 700px;
	position: relative;
	overflow:visible;
}
.clave{
	width: 100%;
	height: 100%;
	background: none;
	color: #fff;
	padding-top: 20px;
	border: none;
	outline: 0px;
}
.form .lbl-nombre{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	border-bottom: 1px solid #c7c7c7;
}
.form .lbl-nombre:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 100%;
	border-bottom: 3px solid #2ecece;
	transform: translateY(0%);
	transition: all 0.3s ease;
}
.text-nomb{
	position: absolute;
	bottom: 5px;
	left: 0;
	transition: all 0.3s ease;
	color: #fff;
}
.form input:focus + .lbl-nombre .text-nomb,.form input:valid + .lbl-nombre .text-nomb{
	transform: translateY(-150%);
	font-size: 14px;
	color: #2ecece;
}
.form input:focus + .lbl-nombre:after, .form input:valid + .lbl-nombre:after{
	transform: translateY(7%);
}
@media only screen and (min-width:320px) and (max-width:768px){
 .form{
	width:100%;
}
	}