:root {
  --primary-color: #e50914;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: black;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #999;
}
ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: white;
  text-align: center;
}
h1 {
  text-align: center;
  margin-left: 0%;
  margin-top: 1 0%;
}

a {
  color: white;
  text-decoration: none;
}
img {
  width: 100%;
  border: 0;
}

.fullpage {
  height: 100%;
  min-height: 100vh;
  position: relative;
  background: url("/img/main/background.jpg") no-repeat center center/cover;
  padding-top: 0;
  background-position: 0 0;
}
.fullpage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.showcase {
  position: relative;
  /*  background: url("img/background.jpg") no-repeat center center/cover; */
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  background-position: 0 0;
}
/* .showcase::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: inset 5px 5px 250px #000000, inset -5px -5px 250px #000000;
}
*/

.showcase-top {
  max-width: 1850px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 75px;
}

.showcase-top img {
  width: 150px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
.signup-form {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: white;
  min-height: 570px;
  max-width: 450px;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 5px;
  padding: 60px 68px 40px;
  margin: auto auto 100px;
}

.signup-form {
  display: flex;
  flex-direction: column;
  max-width: 450px;
  width: 100%;
  margin-top: 50px;
}

.signup-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  z-index: 2;
  margin-bottom: 30px;
}
.signup-form-input {
  background: #333;
  z-index: 2;
  border-radius: 4px;
  border: 0;
  height: 50px;
  line-height: 50px;
  padding: 5px 20px;
  margin-bottom: 20px;
  color: white;
}

.signup-form-text {
  color: #8c8c8c;
  font-weight: 500;
  z-index: 2;
  margin-bottom: 10px;
  margin-top: 15px;
}
.signup-form-captcha {
  margin-top: 25px;
  font-size: 13px;
  line-height: normal;
  color: #8c8c8c;
  z-index: 2;
}
.showcase-bottom {
  max-width: 1850px;
  width: 100%;
  margin: 0;
  padding: 70px 56px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
}
.showcase-bottom a {
  z-index: 2;
}
.footer-title {
  font-size: 1.25rem;
  color: #757575;
  margin-top: 0;
  margin-bottom: 50px;
  z-index: 2;
}
.footer-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  z-index: 2;
}
.footer-column {
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.footer-link {
  font-size: 0.9 rem;
  color: #757575;
  /* padding: 10px 50px; */
  margin-bottom: 20px;
  z-index: 2;
}
/* Buttons */
.signup-button {
  background: #e50914;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  padding: 16px;
  cursor: pointer;
  border-radius: 4px;
  border: 0;
  color: #fff;
  z-index: 2;
}

.signup-button:disabled {
  opacity: 0.3;
}
.signup-button:hover {
  opacity: 0.5;
}

.signin-button {
  opacity: 0.98;
}
.signin-button:hover {
  opacity: 2;
  font-weight: 559;
}
/* Media Elements */

@media (max-width: 750px) {
  .footer {
    padding: 70px 30px;
  }
  .footer-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 550px) {
  .showcase {
    padding: 15px 20px;
  }

  .showcase-top {
    margin-bottom: 100px;
  }

  .signup-form-wrapper {
    padding: 40px 0px;
    min-height: 500px;
  }
}
@media (max-width: 500px) {
  .footer {
    padding: 70px 15px;
  }
  .footer-row {
    grid-template-columns: 1fr 1fr;
  }
}
