@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: Arial, sans-serif;

}
body 
{
	/*
	display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: url('h.bmp') no-repeat;
    background-position: center;
    background-size: cover;
    */
  display: flex;
  background-image: url('/images/h5.png');
  align-items: center;
  justify-content: center;
  background-size: cover; /* adjust the size of the image */
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.box 
{
	position: relative;
	width: 380px;
    	height: 450px;
	background: #335472;
	border-radius: 8px;
	overflow: hidden;
	margin-top: 60px;
}

.box::before 
{
	content: '';
	z-index: 1;
	position: absolute;
	top: -50%;
	left: -50%;
	width: 380px;
	height: 450px;
	transform-origin: bottom right;
	background: linear-gradient(0deg,transparent,#117864,#117864);
	animation: animate 6s linear infinite;
}
.box::after 
{
	content: '';
	z-index: 1;
	position: absolute;
	top: -50%;
	left: -50%;
	width: 400px;
	height: 500px;
	transform-origin: bottom right;
	background: linear-gradient(0deg,transparent,#45f3ff,#45f3ff);
	animation: animate 6s linear infinite;
	animation-delay: -3s;
}
@keyframes animate 
{
	0%
	{
		transform: rotate(0deg);
	}
	100%
	{
		transform: rotate(360deg);
	}
}
form 
{
	position: absolute;
	inset: 2px;
	background: #F7F7F7;
	padding: 50px 40px;
	border-radius: 8px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	
}
h5 
{
	color: #008649;
	text-align: center;
	letter-spacing: 0.1em;
}
h6 
{
	color: #09626f;
	text-align: center;
	letter-spacing: 0.1em;
	padding: 5px;
}
.inputBox 
{
	position: relative;
	width: 300px;
	margin-top: 20px;
}
.inputBox input 
{
	position: relative;
	width: 100%;
	padding: 20px 10px 10px;
	background: transparent;
	outline: none;
	box-shadow: none;
	border: none;
	color: #fff;
	font-size: 1em;
	letter-spacing: 0.05em;
	transition: 0.5s;
	z-index: 10;
}
.inputBox span 
{
	position: absolute;
	left: 0;
	padding: 20px 0px 10px;
	pointer-events: none;
	font-size: 1em;
	color: #A6A6A6;
	letter-spacing: 0.05em;
	transition: 0.5s;
}
.inputBox input:valid ~ span,
.inputBox input:focus ~ span 
{
	color: #008649;
	transform: translateX(0px) translateY(-34px);
	font-size: 0.75em;
}
.inputBox i 
{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #516793;
	border-radius: 4px;
	overflow: hidden;
	transition: 0.5s;
	pointer-events: none;
	z-index: 9;
}
.inputBox input:valid ~ i,
.inputBox input:focus ~ i 
{
	height: 44px;
}
.borderLine
{
	position: absolute;
	top: 0;
	inset: 0;	
}
.borderLine::before
{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 380px;
	height: 420px;
	background: linear-gradient(0deg,transparent,
	transparent,#ff2770,#ff2770,#ff2770);
	z-index: 1;
	transform-origin: bottom right;
	animation: animate 6s linear infinite;
	animation-delay: -1.5s;
}
input[type="submit"]
{
	border: none;
	outline: none;
	padding: 11px 25px;
	background: #008649;
	color: #fff;
	cursor: pointer;
	border-radius: 4px;
	font-weight: 400;
	width: 100px;
}

input[type="submit"]:active,
input[type="button"]:active
{
	opacity: 0.8;
}
.no-spin::-webkit-inner-spin-button, .no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.no-spin {
    -moz-appearance:textfield !important;
}
.btn-filed
{
	width: 100%;
	display: flex;
	justify-content: space-between;
	
}
.btn-filed input
{
	flex-basis: 48%;
	background: #008649;
	color: #fff;
	height: 40px;
	font-weight: 400;
	border-radius: 5px;
	border: 0;
	outline: 0;
	padding: 11px 25px;
	margin-top: 15px;
	cursor: pointer;
	transition: background 1s;
		
}
.footer-basic {
  position: absolute;
  bottom: 0;
  width: 40%;
  height: auto;
  padding: 0px 0;
 
}

.footer-basic footer {
  padding: 5px 0;
  font-size: 14px;
  text-align: center;
  background-color: transparent;
 
}
.footer-basic .copyright {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}
@media only screen and (max-width: 600px) {
    /* Mobile-specific styles */
    .box {
       
       width: 90%;
       height: 75vh;
        
    }
    form 
{
	 padding: 20px;
	
	
	
}

.inputBox 
{
	position: relative;
	width: auto;
	margin-top: 30px;
}
}
