@import url("https://fonts.googleapis.com/css?family=Roboto:300");

* {
  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;
}

/* main container */
main.my-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
section#left-container,
section#right-container {
  flex: 1;
}

.brand-logo img {
  width: 100%;
  max-width: 360px;
  height: 76px;
  margin-bottom: 7vh;
}
section#left-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* forms */
.form-section {
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
  justify-content: center;
  align-items: center;
}
.form-section form {
  width: 80%;
  padding-bottom: 3rem;
}
.form-section label {
  font-size: 0.9rem;
  line-height: 2rem;
  font-weight: 500;
}
input.input-text {
  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;
}
.form-section button.primary-btn {
  width: 100%;
}
section#left-container .secondary-btn,
.or,
.links {
  width: 60%;
}
.links a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.or {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 1.2rem;
}
hr.bar {
  flex: auto;
  border: none;
  height: 1px;
  background: #aaa;
}
.or span {
  margin: 0 0.9rem;
}
#main-footer div {
  text-align: center;
}
#main-footer div a {
  color: #f96816;
  text-decoration: underline;
}

/* Button */
.primary-btn {
  background: #f96816;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 2px;
  min-height: 2.7rem;
  font-weight: 500;
  display: block;
  border: 0;
  transition: all 0.5s;
}

.primary-btn:hover {
  background-color: #ff7b39;
  border: 1px solid #f4f4f4;
}

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

.secondary-btn:hover {
  border-color: #ff7b39;
  color: #ff7b39;
}

/* right section */
section#right-container {
  background: url("../images/login-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
h1.showcase-text {
  font-size: 3rem;
  text-align: center;
}
#showcase .secondary-btn {
  width: 60%;
  margin: auto;
}
div#showcase {
  padding: 0 1.5rem;
}
/* media queries */

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

  section#right-container {
    flex: 6;
  }
}

@media (max-width: 834px) {
  #showcase .secondary-btn {
    width: 80%;
    margin: auto;
  }
}
@media (max-width: 767px) {
  section#right-container {
    display: none;
  }
  main.my-container {
    align-items: flex-start;
  }
  .brand-logo img {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .form-section form {
    width: 80%;
    padding-bottom: 1.5rem;
  }
  .form-section form {
    width: 100%;
  }
  section#left-container .secondary-btn,
  .or,
  .links {
    width: 80%;
  }
  footer#main-footer {
    width: 80%;
    margin: 1.5rem auto 0;
    text-align: center;
  }
  .brand-logo img {
    max-width: 250px;
    height: 60px;
  }
}
