 /*Main-Container code start Here*/
 @import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
 *{
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
 }
 #container {
    width: 80%;
    margin: auto;
}
  /*Main-Container code ends Here*/

  #container > h1 {
    color: #08c;
    font-weight: 400;
    font-size: 30px;
  }

  #inner-container {
    width: 100%;
    height: 370px;
    border-top: 5px solid dodgerblue;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  /*fieldset code start Here*/

  fieldset {
    border-width: 0;
  }

  fieldset > input {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid gray;
  }

  fieldset > label {
    display: block;
    color: gray;
    padding: 10px 10px 10px 0px;
  }
  fieldset > label::after {
    content: " *";
    color: red;
  }
  /*fieldset code ends Here*/

  /*Form-Div code start Here*/
  #signup {
    display: flex;
    justify-content: space-around;
    margin-top: 4%;
  }

  #signup > #personalInfo {
    width: 45%;
  }

  #signup > #signInInfo {
    width: 45%;
  }
  /*Form-Div code ends Here*/

  #check {
    margin-top: 5px;
  }
  #check > label {
    color: gray;
  }

  legend {
    color: dodgerblue;
  }

  #submit_btn {
    padding: 10px 17px;
    font-size: 14px;
    color: white;
    background: dodgerblue;
    border: 1px solid dodgerblue;
    margin-left: 4%;
  }

  /*Social buttons code start here*/
  #social-btn {
    display: flex;
    margin-top: 5%;
    margin-bottom: 3%;
  }

  #social-btn > div {
    background: #3b5998;
    padding: 8px 30px 8px 0px;
    margin-right: 5px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
  }

  #social-btn > div:last-child {
    background: #dd4b39;
  }
  #social-btn > div:hover {
    background: darkblue;
  }

  #social-btn > div:last-child:hover {
    background: tomato;
  }
  #social-btn > div > a {
    color: white;
    padding-left: 5px;
    text-decoration: none;
    font-weight: 600;
  }
  #social-btn > div > i {
    margin-left: 10px;
    font-size: 20px;
  }

  /*Social buttons code ends here*/