* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-image: linear-gradient(
      115deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url(http://isquad.tv/wp-content/uploads/2018/08/Netflix-Background.jpg);
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

nav {
  display: flex;
  height: 100%;
  width: 100%;
}

img {
  max-width: 100%;
  max-height: 100%;
}

#logo {
  height: 100px;
  margin-left: 10px;
}

main {
  display: flex;
  flex-direction: column;
  width: 450px;
  height: 660px;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 60px 68px 40px 68px;
  border-radius: 5px;
}

h1 {
  margin-bottom: 20px;
  justify-content: flex-start;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.form-control {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  border: none;
  margin-bottom: 16px;
  padding-left: 10px;
  font-size: 16px;
  outline: none;
  background: #333;
  color: #dadada;
}

.signin-button {
  width: 100%;
  height: 50px;
  background: #e50914;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  font-size: 17px;
  margin-top: 25px;
}

.actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #737373;
  background-color: transparent;
}

#bottom-signin {
  margin-top: 60px;
  font-size: 16px;
  color: #737373;
}

#bottom-signin a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.actions > label {
  background-color: transparent;
  cursor: pointer;
}

section > button {
  cursor: pointer;
}

#message-validator {
  color: #e50914;
  font-size: 12px;
}

#first-section {
  height: 147px;
}
