*{
  box-sizing: border-box;
}

body{
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  background: #181818;
  color: #fff;
  overflow: hidden;
}

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

#wrapper{
  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 .logo{
  margin-bottom: 8vh;
}

#signin .logo img{
  width: 300px;
}

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

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

input[type="text"], input[type="password"]{
  margin-bottom: 20px;
  display: block;
  line-height: 1.5rem;
  width: 100%;
  background: #181818;
  border: 1.5px solid #555;
  color: #fff;
  padding: 0.5rem 1rem;
  outline: none;
  font-size: 0.9em;
}

input[type = "text"]:focus, input[type = "password"]:focus{
  border: 1.5px solid #2ecc71;
}

.primary-btn{
  padding: 0.7rem 1rem;
  height: 45px;
  background: none;
  display: block;
  border: 1.5px solid #2ecc71;
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.primary-btn:hover{
  background-color: #2ecc71;
}

/* END FORM */

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

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

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

/* Showcase */
#showcase{
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/background3.jpg") no-repeat center center / cover;
  height: 100vh;
  text-align: center;
}

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

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

#right .secondary-btn{
  padding: 0.7rem 1rem;
  height: 3rem;
  display: block;
  border: 2px solid #000;
  border-radius: 2px;
  font-weight: 500;
  background: none;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s;
}

#right .secondary-btn:hover{
  background-color: #fff;
}

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

#footer a{
  color: #2ecc71;
  text-decoration: underline;
}

/* Media Queries */

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

  #right{
    flex: 6;
  }
}

@media (max-width: 768px){
  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;
  }

  #footer{
    padding-top: 10rem;
  }
}
