* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: black;
  font-family: 'Netflix Sans', Arial, Helvetica, sans-serif;
}

.hero {
  background-image: url('./images/netflix-background.jpg');
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(2, 0, 36);
  background: radial-gradient(circle, rgba(2, 0, 36, 0.35480129551820727) 0%, rgba(0, 0, 0, 0.7469581582633054) 74%, rgba(0, 0, 0, 0.8954175420168067) 100%);
  top: 0;
  left: 0;
  z-index: 0;
}

header {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.logo {
  width: 148px;
  height: 40px;
  margin: 22px 0 0 145px;
}

.container {
  position: relative;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7);
  width: 450px;
  padding: 48px 68px;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 1%;
}


.title-login {
  width: 100%;
  text-align: left;
  color: white;
  font-size: 32px;
  margin: 0 0 36px;
}

input {
  background-color: transparent;
  height: 54px;
  color: white;
  font-size: 16px;
  border: 1px solid grey;
  border-radius: 5px;
  padding-left: 16px;
}

.login-password {
  width: 100%;
  margin-bottom: 16px;

}

button {
  background-color: #e50913;
  color: #fff0f1;
  border: none;
  border-radius: 3px;
  font-family: 'Netflix Sans', Arial, Helvetica, sans-serif;
  font-weight: bold;
  cursor: pointer;
}

.btn-login {
  width: 100%;
  height: 40px;
  font-size: 16px;

}

.login-space {
  margin-bottom: 75px;
  text-align: center;
}

.forgot-password {
  margin: 0;
  margin-top: 8px;
  font-size: 16px;
  color: white;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.forgot-password:visited {
  color: white;
}

label {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: none;
  margin-right: 12px;
}

.protection {
  margin-bottom: 90px;
}

.new {
  margin-top: 4px;
  color: #8c8c8c;
}

.sign {
  margin-top: 4px;
  color: white;
  margin-left: 4px;
}

.sign-up-now {
  display: flex;
  flex-direction: row;
  text-decoration: none;
}

.sign-up-now:visited {
  color: white;
  margin-left: 4px;
  display: flex;
  flex-direction: row;
  text-decoration: none;
}

.new-sign {
  text-decoration: none;
}

.recaptcha {
  color: #8c8c8c;
  font-size: 12.5px;
  margin-top: 3px;
}

.more {
  font-size: 13px;
  color: #0071eb;
}

footer {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffffb3;
  width: 100%;
  align-items: center;
  padding: 80px 160px;
  margin-top: 50px;
}

.links {
  font-size: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  margin: 40px 0 30px;
}

a {
  color: #bebebec5;
  display: flex;
  justify-content: space-between;
  height: 35px;
}

select {
  width: 148px;
  height: 32px;
  background-color: rgba(190, 190, 190, 0.068);
  color: rgba(226, 226, 226, 0.836);
  font-size: 14px;
  border-radius: 4px;
  margin-right: 8px;
  font-weight: bold;
  text-align: center;
  padding-left: 6px;
  cursor: pointer;
}

option {
  color: black;
}

.select-container {
  position: relative;
}

.bi.bi-translate {
  color: white;
  position: absolute;
  top: 6px;
  left: 10px;
}