body{
	margin:0px;
	padding: 0px;
	background: #333;
}


#resetbox{
	height: 400px;
	width: 50%;
	background: white;
	border-radius: 5px;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	z-index: 99;

}
#resetPasswordForm{
	position: absolute;
	top:40%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 999;
}


#resetPasswordForm input{
	position: relative;
    border:none;
	outline: none;
	border-bottom: 1px solid #999;
	background: none;
     color: #333;
     transition: 0.5;

}
#resetPasswordForm input {
    height: 40px;
    width: 300px;
    border: none;
    outline: none;
    border-bottom: 1px solid #999;
    margin: 5px;
}

#resetPasswordForm input:hover{
	border-bottom: 1px solid green;
}

.inputText{
	position: absolute;
	line-height: 50px;
	color: #333;
	font-size: 15px;
	transition: 0.5s;
	opacity: .8;
	
}


.focus .inputText{
	transform: translateY(-20px);
	font-size: 12px;
	opacity: 1;
	color: #00bcd4;
}

#resetPasswordForm  input[type="submit"]{
	position: absolute;
	bottom:-50%;
	left: 0%;
	width: auto;
	height: 30px;
	background: linear-gradient(to top, rgba(117,137,12,1), rgba(164,179,87,1)) !important;
	color: #fafafa !important;
	border-radius: 5px;
	border-color: #555; 
	margin-bottom: 20px;
	font-family:monospace;
	font-size: 16px;
	cursor: pointer;

}

 #resetPasswordForm h1 {
    font-size: 25px;
    color: turquoise;
    letter-spacing: 1px;
    text-align: center;
}

@media(max-width: 768px){
	
#resetbox{
	height: 400px;
	width: 90%;
	top:50%;
	left:50%;
}


}

