/*/ Extra small devices (portrait phones, less than 576px)*/

@media (max-width: 575.98px) {


}


/*Small devices (landscape phones, 576px and up)*/

@media (min-width: 0px) and (max-width: 767.98px) {
   
    .div-mobile {
    display: none;
  }
  .div-desktop {
    display: block;
  }
  
    .right-side-bg{
        position: inherit;
    }
    .login-form-area{
        text-align: center;
    }
    .main-form-bg{
        padding: 20px;
        margin: 10px 15px;
        padding-bottom: 10px;
    }
}

/*// Medium devices (tablets, 768px and up)*/

@media (min-width: 768px) and (max-width: 991.98px) {
 
}

/*// Large devices (desktops, 992px and up)*/

@media (min-width: 992px) and (max-width: 1199.98px) {
   
}
