* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  font-weight: 300;
  overflow: hidden;
  background: black;
  color: white;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

#wrapper {
  display: flex;
  flex-direction: row;
}
/* Left portion */
#left {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  height: 100vh;
  justify-items: center;
}

#sign-in {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  padding-bottom: 1rem;
}

#sign-in form {
  width: 80%;
  padding-bottom: 3rem;
}
#sign-in .logo {
  margin-bottom: 6vh;
}

#sign-in .logo img {
  width: 300px;
}

#sign-in label {
  font-size: 0.8rem;
  line-height: 2rem;
  font-weight: 500;
}
#sign-in .text-input {
  margin-bottom: 1.2rem;
  width: 100%;
  border-radius: 2px;
  background: #181818;
  color: #ccc;
  border: 1px solid #555;
  padding: 0.5rem 1rem;
  line-height: 1.2rem;
}

/* Right side  */
#right {
  flex: 1;
}
#showcase {
  display: flex;
  align-items: center;
  justify-content: center;
}

#showcase .showcase-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Primary button */
.primary-btn {
  padding: 0.7rem 1rem;
  height: 2.5rem;
  display: block;
  border-radius: 2px;
  border: 0;
  font-weight: 500;
  background: #ff7c11;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.5sec;
}
.primary-btn:hover {
  background: #ff7b39;
}
#sign-in .primary-btn {
  width: 100%;
  font-size: 1.2rem;
}
/* Secondary button */
.secondary-btn {
  padding: 0.7rem 1rem;
  height: 2.5rem;
  display: block;
  border-radius: 2px;
  border: 1px solid #f4f4f4;
  font-weight: 500;
  background: none;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.5sec;
}
.secondary-btn:hover {
  border-color: #ff7b39;
  color: #ff7b39;
}

#sign-in .secondary-btn,
.or,
.links {
  width: 60%;
}
#sign-in .links a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1rem;
}

#sign-in .or {
  display: flex;
  flex-direction: row;
  margin-bottom: 1.2rem;
  align-items: center;
}

#sign-in .or .bar {
  flex: auto;
  border: none;
  height: 1px;
  background: #aaa;
}
#sign-in .or span {
  color: #ccc;
  padding: 0 0.8rem 0 0.8rem;
}

/* Main- Footer  */

#main-footer {
  color: #ccc;
  text-align: center;
  font-size: 1rem;
  max-width: 80%;
  padding: 5rem;
}
#main-footer a {
  text-decoration: underline;
  color: #ff7b39;
}

/* Right Side */
#right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("Images/right2.jpg") no-repeat center center / cover;
  height: 100vh;
  text-align: center;
 
}

#showcase .showcase-text {
  font-size: 3.5rem;
  width: 100%;
  color: #fff;
  margin-bottom: 1.5rem;
}
#showcase .secondary-btn {
  width: 60%;
  margin: auto;
}
/* Media Quiries */
@media (min-width: 1200px) {
  #left {
    flex: 4;
  }
  #right {
    flex: 6;
  }
}

@media (max-width: 750px) {
  body {
    overflow: auto;
  }
  #right {
    display: none;
  }
  #left {
    justify-content: start;
    margin-top: 4vh;
  }
  #sign-in .logo {
    margin-bottom: 2vh;
  }
  #sigh-in .text-input {
    margin-bottom: 0.7rem;
  }
  #main-footer{
    padding-top: 1rem;

  }
}
