body{
	margin: 0;
	padding: 0;
	background: url("background.jpg");
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Montserrat',sans-serif;
	color: #fff;
}
.formBox{
	width: 400px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 10px;
	padding: 0 24px 48px;
	box-shadow: 0 1px 20px 5px rgba(255, 255, 255, 0.5);
	box-sizing: border-box;
}
.formBox h2{
	line-height: 48px;
	margin: 24px 0;
	letter-spacing: 2px;
	text-align: center;
}
.formBox .inputBox{
	position: relative;
}
.formBox .inputBox input{
	width: 100%;
	padding: 10px 0;
	font-size: 1rem;
	color: #fff;
	margin-bottom: 30px;
	border: none;
	outline: none;
	border-bottom: 1px solid #fff;
	background: transparent;
}
.formBox .inputBox label{
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1rem;
	pointer-events: none;
	transition: 0.5s;
}
.formBox .inputBox input:focus ~ label,
.formBox .inputBox input:valid ~ label{
	top: -18px;
	left: 0;
	font-size: 14px;
	color: #fcdb00;
}
.formBox input[type="submit"]{
	background: #fcdb00;
	border: none;
	outline: none;
	color: #333;
	padding: 10px 20px;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
}
.btn-login
 .box-login input:hover{
   background: rgba(10, 10, 10,s 0.5);
 }
 .btn-login {
   margin-left: 10px;
   margin-bottom: 20px;
   background: none;
   border: 1px solid white;
   width: 92.5%;
   padding: 10px;
   color: white;
   font-size: 18px;
   letter-spacing: 3px;
   cursor: pointer;
   }
 .btn-login:hover{
   background: rgba(12, 30, 15, 0.5);
 }