#form{
  background-color: #bebcbd;
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  height: 100%;
  width:  100%;
}

#form-holder{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 500px;
  font-family: Montserrate-Alternates, Roboto;
  border-radius: -8rem;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, .18);;
}

#left-form{
  background-color: black;
  align-items: center;
  justify-content: center;
}

#left-form, #right-form{
  display: flex;
  flex-direction: column; 
}

#right-form{
  background-color: white;
  padding: 40px 20px;
}

#right-form *{
  margin-top: 5px;
}

#signinBtn-div{
  display: flex;
}

.signinBtn{
  width: 100%; 
  display: flex;
  justify-content: center;
}

button{
  margin-top: 10px;
  font-family: Roboto;
  width: 40%;
  padding-top: 6px; padding-bottom: 6px;
  cursor: pointer;
  border-radius: 5px;
}

button:last-of-type{
  background-color: black;
  color: white;
  border-style: none;
}

form input{
  padding-top: 16px; padding-bottom: 16px;
  padding-left: 13px;
  background-color: #ddd;
  border-style: none;
  border-radius: 5px;
}

form input:nth-of-type(3){
  margin-bottom: 1rem;
}

.tjtLogo{
  height: 150px;
}

.tjtLogo img{
  height: 100%;
}

.social-media{
  height: 40px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.social-icons{
  height: 100%;
}

.mail{
  height: 25px;
  padding-left: 5px;
}

@media(max-width : 600px){
  #form-holder{
    width: 90%;
    grid-template-columns: 1fr;
  }

  #left-form{
    padding: 1rem;
  }
}