@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;700&family=Poppins:wght@400;700&family=Roboto+Mono:wght@100;200;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;700&family=Poppins:wght@300;400;700&family=Roboto+Mono:wght@100;200;400&display=swap");

:root {
  --col:#fa4299;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
  }
  
   
  ::selection{
    background: #fa4299;
    color: #fff;
  }
  input::placeholder{
    color: #7c7c7cb1;
  }
  
  .top_log_pic{
    margin: 3em;
  }
  .top_log_pic img, .top_reg_pic img{
    width: 100%;
  }
  .login{
    text-align: center;
    background: white;
    box-shadow: 0 0 15px #fb58a427;
    margin: 1.5em;
    border-radius: 15px;
    padding: 1em;
  }
  form h1{
    margin-bottom: 1em;
    margin-top: 1em;
    color: var(--col);
  }
  input{
  width: 90%;
  outline: none;
  padding-left: 15px;
  border-radius: 5px;
  border: none;
  background: rgba(241, 241, 241, 0.484);
  margin-bottom: 1em;
  border-bottom-width: 2px;
  font-size: 17px;
  }
  button {
    width: 140px;
    height: 45px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #fff;
    background-color: var(--col);
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px #fb58a427;
    cursor: pointer;
    outline: none;
    margin-bottom: 2em;
    }
    .signup-link{
        margin-bottom: 1em;
    }
    .pass-link a, .signup-link a{
        font-size: 13px;
        color: var(--col);
        cursor: pointer;
    }
    .signup{
        text-align: center;
        background: white;
        box-shadow: 0 0 15px #fb58a427;
        margin: 1.5em;
        margin-top: 0;
        border-radius: 15px;
        padding: 1em;
      }
      .top_reg_pic{
        margin: 3em;
        margin-top: 2em;
        margin-bottom: 0;
      }





      @media only screen and (min-width: 720px) {

        body{
            background: url(bg.JPG) no-repeat;
        }


        .top_log_pic{
            display: none;
          }
          .login{
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            width: 30%;
            text-align: center;
            background: white;
            box-shadow: 0 0 15px #fb58a427;
            margin: 0;
            border-radius: 15px;
            padding: 1em;
          }
          .top_reg_pic{
            display: none;
          }
          .signup{
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            width: 30%;
            text-align: center;
            background: white;
            box-shadow: 0 0 15px #fb58a427;
            margin: 0;
            border-radius: 15px;
            padding: 1em;
          }



      }