  /* font family */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Roboto:wght@100&display=swap');

  *
  {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

  }

  :root
  {
    --primaryColor:#7db2f2;
    --secondaryColor: rgb(73, 174, 232);
    --blackColor:rgb(46,46,71);
    --borderColor:rgb(46,46,71);
    --inputColor:rgb(241,241,241);
    --successColor:rgb(205,237,207);
    --failureColor:rgb(255,0,0);
  }

  html{

    font-size: 90%;
  }

  body
  {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .form_container
  {
    width: 290px;
    height: 450px;
    padding: 0 1rem;
    border-radius: 3px;
    border: 1px solid rgb(234,234,234);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin: auto;
    background: var(--primaryColor);
    overflow: hidden;
    z-index: 1;

  }

  .overlay
  {
    position: absolute;
    background: var(--secondaryColor);
    content: '';
    width: 5000px;
    height: 500px;
    border-radius: 50%;
    z-index: 2;
    top: -20%;
  
  }
  
  .titleDiv
  {
    position: relative;
    width: 100%;
    margin: 10px auto 5px;
    text-align: center;
    transform: translateY(-3rem);
    z-index: 1000;
  }

  .img-logo
  {
    justify-items: center;
    border-radius: 1rem;
    height: 0.3rem;
    margin: 10px auto 5px;

  }

  .title
  {
    color: var(--blackColor);
    font-weight: 700;
    font-size: 2.3rem;

  }

  .rows
  {
    display: grid;
    position: relative;
    gap: 1rem;
    z-index: 1000;
    transform: translateY(-1rem);
    padding-bottom: 1rem;
  }
  label
  {
    display: block;
    padding-bottom: 0.3rem;
    font-size: 13px;
  }
  input
  {
    width: 100%;
    background: var(--inputColor);
    border: none;
    outline: none;
    color: var(--blackColor);
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 3px;
  }
  ::placeholder
  {
    font-size: 10px;

  }

  #submitBtn
  {
    background: var(--blackColor);
    border-radius: 3px;
    cursor: pointer;
    color: white;
  
  }

  #submitBtn:hover
  {
    background: rgb(203,203,235);
    color: var(--blackColor);
  }

  .registerLink
  {
    display: block;
    font-size: 13px;
    color: var(--blackColor);
    text-align: center;
    font-weight: 400;
    margin-top: 1rem;

  }
  .registerLink a{
    text-decoration: none;
    cursor: pointer;
  }

  .register_container
  {
    height: 680px;
    width: 5000;
    padding: 0 1rem;
    border-radius: 3px;
    border: 1px solid rgb(234,234,234);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin: auto;
    background: var(--primaryColor);
    overflow: hidden;
    z-index: 1;

  }