*, *::before, *::after {
    box-sizing: border-box;
  }
  
  body {
    /* background-image: url(https://s3.ca-central-1.amazonaws.com/image-web-frankie/BackgroundBlue.jpg); */
    background-size: cover;
    background-position: center;
    font-family: tahoma;
    overflow: hidden;
    
  }
  h1{margin-top: 97px;}
  
  .btn {
    display: block;
    background-color: #bded7d;
    color: white;
    text-decoration: none;
    margin: 20px 0;
    padding: 15px 15px;
    border-radius: 5px;
    position: relative;
  }
  
  .btn::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.2s ease-in-out;
    box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0), 0 3px 3px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
  }
  
  .btn:hover::after {
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.2);
  }
  
  .btn-social {
    padding-left: 64px;
    position: relative;
    z-index: 1;
  }
  
  .btn-social .fa {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 50px;
    height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
    line-height: 3.2;
    border-radius: 5px 0 0 5px;
  }
  
  .btn-facebook {
    background-color: #3b5999;
  }
  
  .btn-twitter {
    background-color: #55acee;
  }
  
  .btn-google {
    background-color: #dd4b39;
  }
  
  .btn-behance {
    background-color: #131418;
  }
  
  .form fieldset {
    border: none;
    padding: 0;
    margin: 20px 0;
    position: relative;
  }
  
  .form fieldset input {
    width: 100%;
    height: 48px;
    color: #333;
    padding: 15px 40px 15px 15px;
    font-size: 14px;
    outline: none !important;
    border: 1px solid orange;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
    vertical-align: top;
  }
  
  .form button {
    width: 100%;
    outline: none !important;
    background: linear-gradient(-5deg, #79b52c, #94d63d);
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 3px 0 rgba(115, 136, 89, 0.2);
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  }
  
  .signup {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 800px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
  }
  
  .signup-connect, .signup-classic {
    width: 50%;
    padding: 30px 50px;
  }
  
  .signup-connect {
    background: linear-gradient(134deg, #fbce50, #e08106);
    color: white;
  }
  
  .signup-classic h2 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 23px;
    margin-bottom: 43px;
  }
  
  .signup-classic fieldset::after {
    content: "\f007";
    font-family: FontAwesome;
    position: absolute;
    right: 15px;
    top: 17px;
    z-index: 2;
    width: 20px;
    color: rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .signup-classic fieldset.email::after {
    content: "\f0e0";
  }
  
  .signup-classic fieldset.password::after {
    content: "\f023";
  }
  @media (max-width: 900px) {
    .signup {
      position: fixed;

      /* z-index: 1; */
      width: 100%;
      transform: translate(-50%, -60%);
      overflow-x: hidden;
      display: block !important;
    }
    .signup .signup-connect h1{
      font-size: 2.5rem;
      padding-left: 5%;
    }
    .btn-social {
      padding-left: 26px !important;
  }
  .btn {
    font-size: 1rem !important;
    margin: 11px 60px;
    padding: 5px 4px;
}
  .btn-social .fa {
    width: 30px;
  }

    .signup-connect {
      /* background-color: #131418 !important; */
      /* display: none; */
      /* padding: 0%; */
      /* margin-left: 5%; */
      width: min-content;
      overflow-x: hidden;
      width: 100%;
    padding: 10px 45px;
  }
  .signup-classic{
    width: 100% !important;
    padding-left: 10% !important;
    /* padding-top: 1% !important; */
  }
  .signup-classic fieldset::after {
    right: 5px;
    
    top: 7px;
  }
  
  .signup-classic h2 {
    font-size: 12px;
    font-weight: bold;
    margin-top: -6px;
    margin-bottom: 20px;
    padding-left: 35%;
}
.form fieldset input {
  width: 100%;
  height: 25px;
  
    padding: 15px 40px 15px 15px !important;
    font-size: 10px;

}
#register{
  margin-left: 0%;
}
  }