@font-face {
  font-family: "Netflix Sans";
  src: url("../fonts/NetflixSans_Rg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

:root {
  --bg-color: #030303;
  --primary-color: #D22F27;
  --secondary-color: #B0B0B0;
  --login-border-color: #4b4b4b;
  --logout-color: #626262;
  --radial-gradient-desktop: radial-gradient(236.68% 81.06% at 53.4% 37.05%, #230B1A 0%, #000 100%);
  --radial-gradient-mobile: linear-gradient( #170912 0%, #230B1A 40%, #000 100%);
}

.pw-gate {
  color: white;
  background: var(--radial-gradient-mobile);
  background-attachment: fixed;
  padding: 20px;
  text-align: center;
  height: 100vh;
  width: 100vw;
  font-family: "Netflix Sans", sans-serif;
}
@media only screen and (min-width: 768px) {
  .pw-gate {
    background: var(--radial-gradient-desktop);
  }
}
.pw-gate .form-message {
  margin: 20px auto;
  display: block;
}
.pw-gate form {
  border-radius: 10px;
  background-color: var(--bg-color);
  padding: 22px;
  max-width: 310px;
  display: block;
  margin: 0 auto;
}
.pw-gate form label {
  font-size: 21px;
  font-weight: 500;
  text-align: left;
  display: block;
  margin-bottom: 20px;
}
.pw-gate form .pw-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  /* Neutralize browser autofill yellow and keep background transparent/black */
  /* Firefox autofill */
  /* Remove default focus background change */
}
.pw-gate form .pw-wrapper input {
  border-radius: 4px;
  border: 1px solid var(--login-border-color);
  color: white;
  display: block;
  width: 85%;
  height: 40px;
  background-color: transparent;
  font-size: 11px;
  padding: 13px 16px;
  /* Prevent iOS dark mode automatic background change */
  -webkit-text-fill-color: #fff;
  transition: background-color 0.25s ease;
}
.pw-gate form .pw-wrapper input:-webkit-autofill,
.pw-gate form .pw-wrapper input:-webkit-autofill:hover,
.pw-gate form .pw-wrapper input:-webkit-autofill:focus,
.pw-gate form .pw-wrapper input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 40px var(--bg-color) inset !important; /* Fill with site bg (black) */
  box-shadow: 0 0 0 40px var(--bg-color) inset !important;
  background-color: var(--bg-color) !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}
.pw-gate form .pw-wrapper input:-moz-autofill,
.pw-gate form .pw-wrapper input:-moz-autofill:hover,
.pw-gate form .pw-wrapper input:-moz-autofill:focus,
.pw-gate form .pw-wrapper input:-moz-autofill:active {
  box-shadow: 0 0 0 40px var(--bg-color) inset !important;
  background-color: var(--bg-color) !important;
  color: #fff !important;
  caret-color: #fff;
}
.pw-gate form .pw-wrapper input:focus {
  outline: none;
  background-color: transparent;
}
.pw-gate form .pw-wrapper button#passwordReveal {
  color: var(--login-border-color);
  background-color: transparent;
  width: 40px;
  height: 40px;
  border: 1px solid var(--login-border-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pw-gate form button {
  background-color: var(--primary-color);
  border-radius: 4px;
  border: none;
  display: block;
  width: 100%;
  height: 40px;
  color: white;
  letter-spacing: 5px;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.pw-gate form button:hover {
  cursor: pointer;
  transform: scale(1.025);
}

.landing-page {
  color: white;
  background: var(--radial-gradient-mobile);
  background-attachment: fixed;
  padding: 20px 80px;
  text-align: center;
  width: 100vw;
  font-family: "Netflix Sans", sans-serif;
}
@media only screen and (min-width: 768px) {
  .landing-page {
    background: var(--radial-gradient-desktop);
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    padding: 20px;
  }
}
.landing-page .top .message {
  margin-bottom: 50px;
}
.landing-page .films {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 90%;
  max-width: 1400px;
}
@media only screen and (min-width: 768px) {
  .landing-page .films {
    gap: 40px;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0 20px;
  }
}
.landing-page .films .film {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .landing-page .films .film {
    width: unset;
  }
}
.landing-page .films .film .tt {
  aspect-ratio: 2/3;
}
.landing-page .films .film .tt img {
  width: 100%;
  aspect-ratio: 2/3;
}
.landing-page .films .film .links {
  margin: 20px auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
@media only screen and (min-width: 768px) {
  .landing-page .films .film .links {
    margin: 30px auto;
    gap: 12px;
    flex-wrap: wrap;
    width: 70%;
  }
}
.landing-page .films .film .links a {
  color: white;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2.2px;
  width: 100%;
  margin: 0 auto 13px;
  border: 1px solid var(--primary-color);
  padding: 10px;
  border-radius: 4px;
}
@media only screen and (min-width: 768px) {
  .landing-page .films .film .links a {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.landing-page .films .film .links a:hover {
  transform: unset;
  background-color: var(--primary-color);
}
.landing-page .films .film .links .divider {
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
}
@media only screen and (min-width: 768px) {
  .landing-page .films .film .links .divider {
    display: none;
  }
}
.landing-page .bottom {
  width: 100%;
  color: var(--logout-color);
  margin: 80px auto 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.landing-page .bottom a, .landing-page .bottom .divider {
  color: var(--logout-color);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}

.terms-and-conditions {
  color: white;
  background: var(--radial-gradient-mobile);
  background-attachment: fixed;
  padding: 20px 30px;
  text-align: center;
  width: 100vw;
  font-family: "Netflix Sans", sans-serif;
}
@media only screen and (min-width: 768px) {
  .terms-and-conditions {
    background: var(--radial-gradient-desktop);
  }
}
.terms-and-conditions .top .message {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .terms-and-conditions .top .message {
    margin-bottom: 50px;
  }
}
.terms-and-conditions .content h1 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}
@media only screen and (min-width: 768px) {
  .terms-and-conditions .content h1 {
    text-align: left;
  }
}
.terms-and-conditions .content h2 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  font-style: italic;
}
@media only screen and (min-width: 768px) {
  .terms-and-conditions .content h2 {
    text-align: left;
  }
}
.terms-and-conditions .content p, .terms-and-conditions .content ul {
  font-size: 14px;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: left;
}
.terms-and-conditions .content .logout {
  text-align: center;
  margin-top: 80px;
  text-decoration: none;
  color: var(--logout-color);
  display: block;
}

:root {
  font-family: "Netflix Sans", system-ui, Avenir, Helvetica, Arial, sans-serif;
  letter-spacing: 1.2px;
  background-color: var(--bg-color);
}

body {
  overflow-x: hidden;
  font-family: "Netflix Sans", sans-serif;
}
body .top {
  color: white;
  width: 100%;
}
body .top .logo {
  width: 50px;
  margin: 0 auto;
  display: block;
}
body .top .message {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  body .top .message {
    margin-bottom: 50px;
  }
}
body .top .welcome {
  font-size: 20px;
  max-width: 280px;
  margin: 0 auto 20px;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  body .top .welcome {
    max-width: unset;
  }
}
body .top .instructions {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 360px;
  display: block;
  margin: 0 auto 40px;
  text-wrap: pretty;
}
@media only screen and (min-width: 768px) {
  body .top .instructions {
    max-width: 710px;
  }
}
body a {
  color: white;
  transition: all 0.3s ease-in-out;
}
body a:hover {
  transform: scale(1.05);
}

@media only screen and (min-width: 768px) {
  .mobile {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
