.gradient-background {
	width: 100%;
	height: 100vh;
	color: #fff;
	background: linear-gradient(-45deg, #EE7752,#E73C7E, #23A6D5,#23D5AB);
	background-size: 400% 400%;
	position: relative;
	animation: change 10s ease-in-out infinite;
}

.font-renovatio {
	font-family: 'Major Mono Display';
	font-weight: bold;
	background: linear-gradient(-45deg, #EF7752,#E83C7E, #25A6D5,#24D5AB);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center!important;
  }

@keyframes change {
	0% {
		background-position: 0 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 10px;
	font-family: 'Roboto Mono', Arial, sans-serif;
}

.login-box {
	border: 3px solid #fff;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 5rem;
}


.login-box h1 {
	font-size: 3rem;
	/* text-transform: uppercase; */
	letter-spacing: 2px;
	text-align: left;
}

.input-box {
	position: relative;
	margin-top: 3rem;
	font-family: 'Roboto Mono', Arial, sans-serif;
}

.login-box .input-box-error input{
	/* color: rgb(155, 25, 25)!important; */
	border-bottom: 1px solid rgb(155, 25, 25)!important;
}

/* .login-box .input-box-error label{
	color: rgb(92, 14, 14)!important;
} */
.login-box .input-box .error-container{
	height:1rem;
	/* display:none; */
	color: rgb(155, 25, 25);
}

.login-box .input-box input{
	width: 100%;
	padding: 10px 0;
	padding-bottom: 5px;
	font-size: 1.5rem;
	color: rgb(255, 255, 255);
	margin-bottom: 2px;
	border: none;
	border-bottom: 1px solid #fff;
	outline: none;
	background: transparent;
}

.login-box .input-box label{
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px 0;
	font-size: 1.5rem;
	color: #fff;
	pointer-events: none;
	transition: .5s ;
}

.login-box .input-box input:focus ~ label,
.login-box .input-box input:not(:placeholder-shown) ~ label{
	top: -18px;
	left: 0;
	font-size: 1rem;
}

.login-box .link-box {
	margin-top: 2rem;
	width: 100%;
	text-align: center;
}

.login-box .link-box a {
	color: #fff;
	text-decoration: none;
	margin-top: 1rem;
}

.button-container-2 {
	padding: 0;
	position: relative;
	width: 100%;
	font-size: 1rem;
	margin-top: 5vh;
	overflow: hidden;
	border: 1px solid #fff;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	transition: 0.8s;
	letter-spacing: 1px;
}
.button-container-2 button {
	margin:0;
	/* padding: 1.6em 3em; */
	padding: 2.5vh 4vh;
	width: 99.9%;
	height: 100%;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	/* font-weight: 300; */
	font-size: 1rem;
	letter-spacing: 1px;
	font-weight: bold;
	background: linear-gradient(-45deg, #23D5AB, #23A6D5, #E73C7E, #EE7752);
	-webkit-mask: url("../../../images/skin/button-sprite.png");
	mask: url("../../../images/skin/button-sprite.png");
	-webkit-mask-size: 3000% 100%;
	mask-size: 3000% 100%;
	border: none;
	color: #fff;
	cursor: pointer;
	-webkit-animation: ani2 0.5s steps(29) forwards;
	animation: ani2 0.5s steps(29) forwards;
}
.button-container-2 button:hover,
.button-container-2 button:focus {
	-webkit-animation: ani 0.5s steps(29) forwards;
	animation: ani 0.5s steps(29) forwards;
}
.mas {
	height: 100%;
	position: absolute;
	color: #fff;
	text-align: center;
	width: 99.9%;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 1rem;
	/* margin-top: 1.6em; */
	margin-top: 2.5vh;
	letter-spacing: 1px;
	overflow: hidden;
	font-weight: bold;
}
@-webkit-keyframes ani2 {
	from {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
   }
	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
   }
}
@keyframes ani2 {
	from {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
   }
	to {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
   }
}
@-webkit-keyframes ani {
	from {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
   }
	to {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
   }
}
@keyframes ani {
	from {
		-webkit-mask-position: 100% 0;
		mask-position: 100% 0;
   }
	to {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
   }
}