*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body{
    background-color: #D8D8D9;
  
  }
  .gap_purpose{
    margin: 100px;
  }

  .from_row_div{
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    box-shadow: 12px 12px 22px grey;
    /* text-align: center; */
  }
  .img{
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  .password_link{
    text-decoration: none;
  }
  .btn1{
    border: none;
    outline: none;
    height: 40px;
    width: 100%;
    background-color:#363636;
      
    color: white;
    border-radius: 4px;
    font-weight: bold;
  }
  .btn1:hover{
    background-color: crimson;
    color:#fff;
  }
  /* .form_border{
      border-color: crimson;
  } */
  @media (max-width:1000px){
    .from_row_div{
        background-color: rgb(255, 255, 255);
        border-radius: 30px;
        box-shadow: 12px 12px 22px grey;
        text-align: center;
      }
      .img{
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
      }
      .password_link{
        text-decoration: none;
      }
      .btn1{
        border: none;
        outline: none;
        height: 40px;
        width: 100%;
        background-color:#363636;
        color: white;
        border-radius: 4px;
        font-weight: bold;
      }
      .btn1:hover{
        background-color: crimson;
        color:#fff;
      }
  }

  /* home navigation part */
#top_bar_text_home{
    padding-right:5px;
    color: #D8D8D9;
    font-size: 15px;
    font-weight:bold;
    font-family: sans-serif;
    position: relative;
    
    }
    /* hover section and hover animation */
    #top_bar_text_home:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color:crimson;
      visibility: hidden;
      transition: all 0.3s ease-in-out;
    }
    #top_bar_text_home:hover:before {
        visibility: visible;
        width: 100%;}