@charset "utf-8";

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*{
	margin: 0;
	padding: 0;
	text-decoration: none;
	font-family: montserrat;
	box-sizing: border-box;
	
}
body{
	min-height: 100vh;
	background-image: linear-gradient(120deg,#21409A,#00AEEF);
	
}
.content {
	height: 800px;


}

.login-form{
	width: 360px;
	background: #f1f1f1;
	height: 580px;
	padding: 80px 40px;
	border-radius: 10px;
	position: absolute;
	left: 50%;
	top: 82%;
	transform: translate(-50%,-50%);
}
.login-form h1{
	text-align: center;
	margin-bottom: 60px;
}
.texb{
	border-bottom: 2px solid #adadad;
	position: relative;
	margin: 30px 0;
}
.texb input{
	font-size: 15px;
	color: #333;
	border: none;
	width: 100%;
	outline: none;
	background: none;
	padding: 0 5px;
	height: 40px;
}
.texb span::before{
	content: attr(data-placeholder);
	position: absolute;
	top:50%;
	left:5px;
	color: #adadad;
	z-index: -1;
	transition: .5s;
	
}
.texb span::after{
	content: '';
	position: absolute;
	top:100%;
	left:0px;	
	transform: translateY(-50%);
	width: 0%;
	height: 2px;
	background: linear-gradient(120deg,#21409A,#00AEEF);
	transition: .5s;
}
.focus + span::before{
	top:-5px;
}
.focus + span:after{
	width: 100%;
}
.logbtn{
	display: block;
	width: 100%;
	height: 50px;
	border: none;
	background: linear-gradient(120deg,#21409A,#00AEEF);
	background-size: 200%;
	color: #fff;
	outline: none;
	cursor: pointer;
	transition: .5s;
}
.logbtn:hover{
	background-position: right;
	
}
.bottom-text{
	margin-top: 60px;
	text-align: center;
	font-size: 13px;
}
