* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #000;
  color: #fff;
}

.header {
  min-height: 100vh;
  width: 100%;
  padding: 10px 8%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./assets/images/netflix-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.nav {
  width: 100%;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 150px;
}

#lng-select {
  padding: 7px 10px;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.login-form-container {
  display: flex;
  justify-content: center;
  min-height: 80vh;
}
.login-form-box {
  padding: 50px;
  width: 100%;
  max-width: 500px;
  border-radius: 5px;
  background-color: #000;
  opacity: 0.9;
  margin: auto;
}
.login-form h2 {
  text-align: center;
  padding: 10px;
  font-size: 30px;
}

.login-form {
  display: flex;
  flex-direction: column;
  color: #ffffff;

  /* padding: 60px; */
}

.login-form input {
  padding: 15px;
  margin: 10px;
  font-size: 1rem;
  border: none;
  background-color: rgb(100, 97, 97);
  border-radius: 3px;
  flex-basis: 100%;
}
.login-form input::placeholder {
  color: #ffffff;
}

.login-form button {
  padding: 15px;
  font-size: 1rem;
  margin: 50px 10px;
  border: none;
  border-radius: 3px;
  background-color: #e50914;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  flex-basis: 100%;
}

.remeberme-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1px 10px;
}
.remeberme-box > div {
  display: flex;
  align-items: center;
}
.remeberme-box > div input {
  margin-right: 5px;
}
.remeberme-box span a {
  text-decoration: none;
  color: #ffffff;
}

.remeberme-box span a:hover {
  text-decoration: underline;
}

.signUp-box {
  padding: 80px 10px 0px 10px;
  color: grey;
}

.signUp-box > p {
  margin-bottom: 5px;
}

.signUp-box a {
  text-decoration: none;
  color: #ffffff;
}

.signUp-box a:hover {
  text-decoration: underline;
}

/* --- footer-Section ---  */

.footer {
  padding: 50px 15% 10px 15%;
  border-top: 6px solid #333;
  color: #777;
}

.footer h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

.footer .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 0px;
}
.footer .row .col {
  margin-bottom: 20px;
}
.footer .row .col li {
  list-style: none;
  margin-bottom: 10px;
}

.footer .row .col li a {
  font-size: 14px;
  text-decoration: none;
  color: #777;
}

.footer .row .col li a:hover {
  text-decoration: underline;
}

.footer #lng-select {
  border: 1px solid #b8b0b0;
}

.copyright-text {
  font-size: 14px;
  margin: 20px 0px;
}

.developer {
  text-align: center;
  padding: 20px;
}

.developer p {
  color: #b10808;
  font-weight: bold;
}
