@charset "utf-8";
/* CSS Document */

.login-bg {
	background-image: url(../images/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

.mandatory {
	color:#f00;
}
 
  fieldset {
	position: relative;
	border: none;
  }
  
  label {
	position: absolute;
	top: 18px;
	color: rgba(0, 0, 0, 0.3);
	transform-origin: left;
	transition: all 0.3s ease;
	left: 0;
  }
  
  input:focus ~ label {
	color: #ff7f00;
  }
  
  input:focus ~ label,
  input:valid ~ label {
	top: 0;
	transform: scale(0.6, 0.6);
  }
  
  input {
	font-size: 20px;
	width: 100%;
	border: none;
	margin-top: 10px;
	background-color: transparent;
  }
  
  input:focus {
	outline: none;
  }
  
  .after {
	width: 100%;
	height: 2px;
	background: linear-gradient(to right, #ff7f00 50%, transparent 50%);
	background-color: rgba(0, 0, 0, 0.3);
	background-size: 200% 100%;
	background-position: 100% 0;
	transition: all 0.6s ease;
  }
  
  input:focus ~ .after {
	background-position: 0 0;
  }
  
  button {
	position: relative;
	width: 100%;
	font-size: 15px;
	font-family: system-ui, Helvetica, Arial, sans-serif;
	line-height: 25px;
	margin-top: 20px;
	padding: 2px 10px;
	color: #fff;
	background: white;
	border: none;
	background: linear-gradient(to right, #ffffff 50%, transparent 50%);
	background-color: rgba(0, 0, 0, 0.3);
	background-size: 200% 100%;
	background-position: 100% 0;
	transition: all 0.6s ease;
	background-color: #ff7f00;
	  border-radius: 10px;
  }
  
  button:before {
	position: absolute;
	content: "Submit";
	top: 2px;
	bottom: 2px;
	left: 2px;
	right: 2px;
	display: block;
	background-color: #ff7f00;
	  border-radius: 10px;
  }
  
  button:active,
  button:focus,
  button:hover {
	outline: none;
	background-position: 0 0;
	color: #fff;
  }
  .background-full-banner {

	background: rgba(237,237,237,1);
	background: -moz-linear-gradient(left, rgba(237,237,237,.8) 0%, rgba(246,246,246,.8) 47%, rgba(237,237,237,.8) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(237,237,237,.8)), color-stop(47%, rgba(246,246,246,.8)), color-stop(100%, rgba(237,237,237,.8)));
	background: -webkit-linear-gradient(left, rgba(237,237,237,1) 0%, rgba(246,246,246,.8) 47%, rgba(237,237,237,.8) 100%);
	background: -o-linear-gradient(left, rgba(237,237,237,1) 0%, rgba(246,246,246,.8) 47%, rgba(237,237,237,.8) 100%);
	background: -ms-linear-gradient(left, rgba(237,237,237,1) 0%, rgba(246,246,246,.8) 47%, rgba(237,237,237,.8) 100%);
	background: linear-gradient(to right, rgba(237,237,237,1) 0%, rgba(246,246,246,.8) 47%, rgba(237,237,237,.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ededed', GradientType=1 );
	  height: 100vh;
	  padding:20px;
	  padding-top:80px;
  }
  .carousel {
	top: 38vh
}
.carousel-content {
	color:#fff;
	font-size: 25px;
	text-shadow: 2px 2px 2px #333;
	line-height: 35px;
	background-color: rgba(0, 0, 0, 0.3);
	padding: 20px;
	position: relative;
}
.carousel-control.right, .carousel-control.left {
	background: transparent;
}
.footer {
	position: fixed;bottom: 5px; left:10px;color:#000;padding:5px 30px; background-color: rgba(255, 255, 255, .8);border-radius: 20px; text-align: center;
}
@media only screen and (max-width: 991px) and (min-width: 320px)
{
	.background-full-banner {
		padding-bottom: 50px;
		padding-top: 20px;

	}
	body {
		height: 100vh !important;
	}
	.carousel {
		top: 15vh;
	}
}
@media only screen and (max-width: 767px) and (min-width: 320px)
{
	.background-full-banner {
		height:auto;
		margin-top: 50px;
	}
	.footer {
		position:inherit;
		left:0;
		top:10px;
	}
}
@media only screen and (max-width: 991px) and (min-width: 768px)
{
	.background-full-banner {
		height:100vh ;		
	}
}