body {
  padding: 0px;
  margin: 0px;
  font-family: Arial, Helvetica, sans-serif;
}

.logo img {
  height: 110px;
  width: 220px;
}

.header {
  padding: 5px 20px;
  position: relative;
  z-index: 10;
}

.wrapper {
  background-image: url(./back.jpg);
  min-height: 100vh;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  position: absolute;
  object-fit: cover;
  background-size: cover;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
}

.login_body {
  padding: 30px;
  z-index: 90;
  position: relative;
  max-width: 450px;
  max-height: 630px;
  margin-left: 50%;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  box-sizing: border-box;
  transform: translateX(-50%);
}

.wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 130%;
  background: rgba(0, 0, 0, 0.25);
}

.wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 130%;
  background: rgba(0, 0, 0, 0.25);
}

.login_body h2 {
  font-size: 32px;
  color: white;
  margin-top: 0;
}

.login_body input {
  height: 50px;
  width: 100%;
  border-radius: 3px;
  color: white;
  background-color: white;
  border: 1px solid #333;
  padding-left: 5px;
  box-sizing: border-box;
  outline: none;
}

.input_wrap {
  margin-bottom: 25px;
}

.login_body button {
  height: 50px;
  width: 100%;
  color: white;
  background: #e50914;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  border: 1 solid #e50914;
}

.sign_in {
  color: #737373;
  font-size: 16px;
}

.sign_in a {
  color: white;
  font-size: 16px;
}
.input_wrap .button a {
  color: white;
}
