* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #f7f4f4;
  font-family: serif;
}
.none {
  display: none;
}
/**Reusables*/
.blue {
  color: #1f59bb;
  text-transform: capitalize;
  font-weight: 400;
}
.info {
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
}
/*Wrapper*/
#wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
/**SignUpInfo Styles*/
#signUpInfo {
  background-color: #1f59bb;
  color: #ffffff;
  padding: 2rem;
  width: 100%;
}
#logo {
  color: #fff;
  width: 90px;
  height: 90px;
}
.infoHeading,
.infoSubheading {
  text-transform: capitalize;
  line-height: 2.5rem;
  margin: 1rem;
}
.infoSubheading::after {
  content: "...";
}
#infoIllustration {
  width: 300px;
  height: 300px;
  display: flex;
  align-self: center;
  margin: auto;
}
/*SignUpDiv styles**/
#signUpDiv {
  background-color: #fff;
  border: transparent;
  padding: 2rem;
  width: 100%;
}
.nameInputGroup {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
.nameInputGroup label:nth-child(2) {
  margin-left: 1rem;
}
.label {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.3rem;
  color: #1f59bb;
  font-size: 13px;
}
.input {
  border: 0.25px solid #1f59bb;
  background: rgba(31, 89, 187, 0.05);
  border-radius: 5px;
  height: 2rem;
  width: 100%;
  margin-top: 0.6rem;
}
.privacy {
  font-weight: 300;
  text-align: center;
  margin-top: 1rem;
  font-size: 11px;
}
.submit {
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  width: 100%;
  background-color: #1f59bb;
  border: transparent;
  margin-top: 1rem;
  padding: 0.5rem 0;
  border-radius: 5px;
}
.submit::after {
  content: "!";
}
.signIn {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  align-self: center;
  justify-content: center;
}
.signIn span {
  padding-left: 0.25rem;
}
span a {
  color: darkblue;
  font-weight: 500;
}
/**Responsiveness**/
@media only screen and (max-width: 800px) {
  #signUpInfo {
    display: none;
  }
  #signUpDiv {
    padding-top: 3rem;
  }
  h1.show {
    display: block;
    font-size: 35px;
    color: #1f59bb;
    text-transform: capitalize;
    font-weight: 600;
  }
  h1.show:after {
    content: ".";
    font-size: 30px;
    font-weight: 500;
  }
  h2.display {
    margin-top: 0.5rem;
    display: block;
    color: #1f59bb;
    font-size: 20px;
    font-weight: 400;
    opacity: 1;
  }
  .nameInputGroup {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
  }
  .nameInputGroup label:nth-child(2) {
    margin-left: 0;
  }
}
