@import url('https://fonts.googleapis.com/css?family=Roboto:300');



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;
  margin: none;
  padding: 0px;
}

#left {
  background: #181818;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

input {
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    background: #181818;
    outline: none;
    border: none;
    border-bottom: 1px solid #fff;
    color: white;
    border-radius: 5px;
}

#right {
  flex: 1;
  display: none;
}

#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 label {
  font-size: 0.9rem;
  line-height: 2rem;
  font-weight: 500;
}

#signin .primary-btn {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 0;
  outline: none;
  border: none;
  background: #F96816;
  border-radius: 5px;
  font-size: 20px;
  color: white;
  margin: auto;
}

#signin .primary-btn:hover {
  background: #ff7b39;
}

#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: 1.2rem;
}

#signin .links a:hover {
  color: #F96816;
}

#signin .or {
  display: flex;
  flex-direction: row;
  margin-bottom: 1.2rem;
  align-items: center;
}

#signin .or .bar {
  flex: auto;
  border: none;
  height: 1px;
  background: #aaa;
}

#signin .or span {
  color: #ccc;
  padding: 0 0.8rem;
}

#showcase {
  display: flex;
  justify-content: center;
  align-items: baseline;
  background: url(b3.jpg) no-repeat center center / cover;
  height: 100vh;
  text-align: center;
}

#showcase .showcase-text {
  font-size: 6rem;
  width: 100%;
  color: #fff;
  margin-bottom: 1.5rem;
}

#showcase .secondary-btn {
  width: 60%;
  margin: auto;
}

#main-footer {
  color: #ccc;
  text-align: center;
  font-size: 1.2rem;
  max-width: 80%;
  padding-top: 5rem;
}

#main-footer a {
  color: white;
  text-decoration: underline;
}

#main-footer a:hover {
    color: #f96816;
}

.primary-btn:hover {
  background-color: #ff7b39;
}

.secondary-btn {
  padding: 0.7rem 1rem;
  height: 3.7rem;
  display: block;
  border: 1px solid #f4f4f4;
  border-radius: 2px;
  font-weight: 500;
  background: none;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s;
  border-radius: 5px;
}

.secondary-btn:hover {
  border-color: #ff7b39;
  color: #ff7b39;
}

/* Media Queries */
@media (min-width: 1200px) {
  #left {
    flex: 4;
  }

  #right {
    flex: 6;
    display: inline;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  body {
    overflow: auto;
  }

  #right {
    display: none;
  }

  #left {
    justify-content: start;
  }

  #signin .logo {
    margin-top: 10vh;
    margin-bottom: 2vh;
  }

  #main-footer {
    padding-top: 15rem;
  }
}

@media (max-width: 376px) {
  #right {
    display: none;
  }
}
