* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  header {
    /* background-color: red; */
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .container {
    max-width: 800px;
    min-height: 500px;
    border: 1px solid gray;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
  }

  .left {
    flex-basis: 50%;
  }

  .right {
    flex-basis: 50%;
    padding: 20% 40px;
  }

  .right img{
    width: 100%;
    margin-bottom: 10px;
  }

  .right p{
    text-align: center;
    margin: auto;
    max-width: 16rem;
    padding-top: 10px;
  }

  h3{
    color: #2d3436;
    margin: 1rem 0;
  }

  form input[type="text"]{
    width: 49%;
    padding: 0.5rem 0.7rem;
    outline: none;
    border: 1px solid #b2bec3;
    margin-bottom: 1.5rem;
    border-radius: 5px;
  }

  form input[type="email"]{
    width: 100%;
    padding: 0.5rem 0.7rem;
    outline: none;
    border: 1px solid #b2bec3;
    /* margin-bottom: 1.5rem; */
    border-radius: 5px;
  }

  form span{
    color: gray;
    width: 100%;
    font-size: 0.8rem;
  }

  form a{
    text-decoration: none;
    font-weight: 600;
    font-size: 00.8rem;
    color: #3498db;
  }

  form input[type="password"]{
    width: 49%;
    padding: 0.5rem 0.7rem;
    outline: none;
    border: 1px solid #b2bec3;
    margin: 1.2rem 0;
    border-radius: 5px;
  }

  .b_link{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
  }

  form input[type="submit"]{
    background: #3498db;
    color: white;
    padding: 0.5rem 1.3rem;
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
  }

 form input{
  transition: 0.4s;
 }

  form input:focus{
    border: 2px solid #3498db;
  }

  #uname{
    position: relative;
  }

  #uname label{
    position: absolute;
    right: 0;
    font-size: 0.8rem;
    padding: 00.5rem 0.7rem;
  }

  @media screen and(max-width:770px){
    body{
      overflow-x: hidden;
    }
    header{
      align-items: flex-start;
      padding: 0.2rem;
    }
    .right{
      display: none;
    }
    .container{
      flex-direction: column;
      border: none;
    }
    form input[type="text"]{
      width: 100%;
    }
    form input[type="password"]{
      width: 100%;
      margin: 0.8rem 0;
    }
    .b_link{
      margin-top: 1rem;
    }
  }

@media screen and(max-width: 500px) {
     
  .right{
    display: none;
  } 

}