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

html {
  height: 100%;
  width: 100%;
  min-width: 366px;
  max-height: 650px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  background: #ffffff;
  color: #1b2032;
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
h3 {
  color:#1b2032;
  padding-top: 30px;
  padding-bottom: 25px;
  }

h4,
h5 {
  color: #000;
  }

h6 {
  font-weight: 300;
}

#wrapper {
  display: flex;
  flex-direction: row-reverse;
}

p{
  color:#000;
}

.right {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  flex-grow: 1 1 auto;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  position: relative;
  min-height: 100vh;
  background-color: #ffffff;
}

.left {
  flex: 8 1 auto;
}

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

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

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

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

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

#recover-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  padding-bottom: 1rem;
}

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

#recover-area label {
  font-size: 0.9rem;
  line-height: 1rem;
  font-weight: 500;
}

#recover-area .text-input {
  margin-bottom: 1.3rem;
  width: 100%;
  border-radius: 2px;
  background: #ffffff;
  border: 1px solid #1b2032;
  color: #1b2032;
  padding: 0.5rem 1rem;
  line-height: 1.3rem;
}

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

#signup-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  padding-bottom: 1rem;
}

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

#signup-area label {
  font-size: 0.9rem;
  line-height: 1rem;
  font-weight: 500;
}

#signup-area .text-input {
  margin-bottom: 1.3rem;
  width: 100%;
  border-radius: 2px;
  background: #ffffff;
  border: 1px solid #1b2032;
  color: #1b2032;
  padding: 0.5rem 1rem;
  line-height: 1.3rem;
}

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

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

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

.white{
  color:#1b2032;
  padding-top: 15px;
}

.copyright{
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
}

footer{
  position: absolute;
  bottom: 0;
}

#main-footer {
  color: #1b2032;
  text-align: center;
  font-size: 1rem;
  max-width: 100%;
  padding-top: 5rem;
}

#main-footer a {
  color: #f96816;
  text-decoration: underline;
}

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

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

.btn-danger {
	background-color: #1b2032 !important;
	border-color: #1b2032 !important;
}

@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;
  }

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