body{
  height: 120%;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
}

.logo img{
  height: 45px;
  width: 167px;
}

.header{
  padding: 20px 50px;
  position: relative;
  z-index: 10;
}

.wrapper{
  background: url('https://i.ibb.co/vXqDmnh/background.jpg') no-repeat center center/cover;
  height: 100%;
  position: relative;
  width: 100%;
}

.wrapper::before{
  content:'';
  background: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.login_body{
  padding: 60px;
  z-index: 90;
  position: relative;
  max-width: 450px;
  height: 400px;
  margin-left: 50%;
  background: rgba(0,0,0,0.75);
  border-radius: 10px;
  box-sizing: border-box;
  transform: translateX(-50%);

}



.login_body h2{
  font-size: 32px;
  color: #fff;
  margin-top: 0;
}
 
.login_body input{
  height: 50px;
  width: 100%;
  border-radius: 3px;
  color: #fff;
  background: #333;
  border: 1px solid#333;
  padding-left: 15px;
  box-sizing: border-box;
  outline: none;
}

.input_wrap{
  margin-bottom: 25px;
}

.login_body button{
  height: 50px;
  width: 100%;
  color: #fff;
  background: #e50914;
  border-radius: 3px;
  font-weight: 500;
  font-size: 25px;
  border: 1px solid #e50914;
}



.sign_in{
  color: #737373;
  font-size: 12px;
}

.sign_in a{
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}


.footer {
	max-width: 100%;
	margin: 1rem auto;
	overflow: auto;
  background-color: #000;

}

.footer a {
	color: #999;
	font-size: 0.9rem;
  text-decoration: none;
}

.footer p {
	margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-left: 40px;
  padding-top: 10px;
}

.footer .footer-cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 2rem;
  justify-items: center;
}

.footer li {
	line-height: 1.9;
}

.footer .lang-select {
	margin-top: 2rem;
	color: #999;
	background-color: #000;
	background-image: none;
	border: 1px solid #333;
	padding: 1rem 1.2rem;
	border-radius: 5px;
}