/* Main Content */
* {
  box-sizing: border-box;
  font-family: "PS TT Commons Roman", "Gotham SSm A", "Gotham SSm B", Arial,
    sans-serif;
}

body {
  font-weight: 400;
  background: rgb(13, 15, 18);
  color: #fff;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

/* Container */

#container {
  display: flex;
  flex-direction: row;
}

#left {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#right {
  flex: 1;
}

/* Sign In */
#signin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  padding-bottom: 1rem;
}

#signin form {
  width: 80%;
  padding-bottom: 3rem;
}

#signin .logo {
  margin-bottom: 8vh;
}

#signin .logo img {
  margin-top: 22px;
  width: 350px;
}

#signin label {
  font-size: 0.9rem;
  line-height: 2rem;
  font-weight: 500;
}

#signin .text-input {
  margin-bottom: 1.3rem;
  width: 100%;
  border-radius: 2px;
  background: #181818;
  border: 1px solid #555;
  color: #ccc;
  padding: 0.5rem 1rem;
  line-height: 1.3rem;
}

#signin .primary-btn {
  width: 100%;
}

#signin .secondary-btn,
.or,
.links {
  width: 60%;
}

#signin .links a {
  display: block;
  color: #0074ab;
  text-decoration: none;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 550;
}

#signin .or {
  display: flex;
  flex-direction: row;
  margin-bottom: 1.2rem;
  align-items: center;
  color: rgb(65, 65, 65);
}

#signin .or .bar {
  flex: auto;
  border: none;
  height: 1px;
  background: #aaa;
}

#signin .or span {
  color: #ccc;
  padding: 0 0.8rem;
}

/* Showcase */
#showcase {
  display: flex;
  /* justify-content: center; */
  padding-left: 75px;
  align-items: center;
  background: url("https://www.pluralsight.com/content/dam/pluralsight2/login/bg-gtm-2020.png")
    no-repeat;

  height: 100vh;
  /* THIS IS JUST FOR TEST PURPOSE ONLY NEED TO CHANGE BEFORE DEPLOY ON NETLIFY */
  background-position-y: -180px;
  /* Need to Change this Upper BackGround Position before deploy */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0, 0, 0);
  text-align: center;
}

#showcase .showcase-text {
  font-size: 3rem;
  width: 100%;
  color: #fff;
  margin-bottom: 1.5rem;
}

#showcase .secondary-btn {
  width: 60%;
  margin: auto;
}

/* Footer */
#main-footer {
  color: #ccc;
  text-align: center;
  font-size: 0.8rem;
  max-width: 80%;
  padding-top: 0px;
}

#main-footer a {
  margin-top: -250px;
  color: #0074ab;
  text-decoration: underline;
}

/* Button */
.primary-btn {
  padding: 11.2px 16px;
  height: 2.7rem;
  display: block;
  border: 0;
  border-radius: 3px;
  font-weight: 500;
  background: #0074ab;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s;
  line-height: 18.4px;
}

.primary-btn:hover {
  background-color: rgb(5, 86, 124);
}

.secondary-btn {
  padding: 11.2px 25px;
  height: 2.7rem;
  display: block;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  background: #4a5157;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s;
  line-height: 18.4px;
}
/* Right Side Button */
.secondary-btn1 {
  padding: 11.2px 25px;
  height: 2.7rem;
  display: block;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s;
  line-height: 18.4px;
}
#sec-btn {
  background: linear-gradient(
    rgb(241, 86, 86),
    rgb(209, 42, 92),
    rgb(211, 103, 53)
  );
  margin-right: 68%;
}

#content-banner {
  margin-top: 150px;
  width: 150px;
  height: 270px;
}
.secondary-btn:hover {
  border-radius: 3px;
  color: #8a99a8;
}
#build-logo {
  margin-left: 150px;
}
#build-logo > img {
  margin-top: 100px;
  margin-left: 450px;
  max-width: 150px;
  width: 125px;
  height: 40px;
}

/* Media Queries */
@media (min-width: 1200px) {
  #left {
    flex: 4;
  }

  #right {
    flex: 6;
  }
}

@media (max-width: 720px) {
  body {
    overflow: auto;
  }

  #right {
    display: none;
  }

  #left {
    justify-content: start;
    margin-top: 4vh;
  }

  #signin .logo {
    margin-bottom: 2vh;
  }

  #signin .text-input {
    margin-bottom: 0.7rem;
  }

  #main-footer {
    padding-top: 1rem;
  }
}
