body{
  height: 100%;
  width: 100%;
  background-color: #F0F2F5;
}

.main_div{
  margin: 10px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100vh;
  column-gap: 90px;
  flex-wrap: wrap;
}

.left_div{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: -70px;
  width: 480px;
}

#logo{
  width: 250px;
  margin-bottom: -29px;
}

h2{
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 27px;
  line-height: 32px;
  margin-top: 2px;
}

.right_div{
  padding: 15px 0px;
  margin-left: 25px;
  margin-right: 25px;
  display: flex;
  align-items: center;
  margin-bottom: -80px;
  flex-direction: column;
}

.under_right_div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 400px;
  height: 350px;
  box-shadow: 0px 2px 9px 0px rgba(71, 71,71, 0.33);
  border-radius: 10px;
}

form{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0px 15px 0px;
}

.input{
  display: flex;
  justify-content: center;
  align-content: center;
  width: 370px;
  margin-bottom: 15px;
  padding: 15px 10px;
  font-size: 18px;
  box-sizing: border-box;
  border: 1px solid rgb(217, 217, 217);
  border-radius: 6px;
  outline: none;
}

.input:focus{
  border: 1.8px solid #0866FF;
}

#login_button{
  background-color: #0866FF;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  width: 370px;
  margin-bottom: 15px;
  padding: 15px 10px;
  font-size: 18px;
  font-weight: bold;
}

#login_button:hover{
  cursor: pointer;
}

form a{
  text-decoration: none;
  color: #3398ca;
  font-family: 'Arial Narrow Bold', sans-serif;
}

#create_button{
  background-color: #42B72A;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}

#create_button{
  cursor: pointer;
}

form a:hover{
  text-decoration: underline;
}

hr{
  color: gray;
  width: 250px;
  padding-left: 10%;
  padding-right: 10%;
}

#a-below-form{
  text-decoration: none;
  color: black;
  font-weight:600;
  font-family: Helvetica, Arial, sans-serif;
}

#a-below-form:hover{
  cursor: pointer;
}

#p-below-form{
  text-decoration: none;
  margin-top: 31px;
  color: black;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: lighter;
}


@media screen and (min-width: 1023px) {
  .right_div {
    margin: 0;
  }
  
  .under_right_div {
    width: 100%;
  }
  
  .input {
    width: 270px;
  }
  
  #login_button {
    width: 50%;
  }
  
  .left_div {
    margin: 0;
  }
  
  .left_div h2 {
    font-size: 20px;
  }
   hr{
    width: 210px;
  }
}
