.registerBanner{
  z-index: 1000;
  position: fixed;
  right: 10px;
  bottom: 10px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: flex-end;
  width: 365px;
}

.registerBanner-img{
  width: 100%;
}

.registerBanner-close{
  width: 30px;
}

@media (max-width: 768px) {
  .registerBanner{
    z-index: 1000;
    position: fixed;
    bottom: 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-end;
    width: 94%;
    right: 3%;
  }

  .registerBanner-img{
    width: 100%;
  }

  .registerBanner-close{

  }
}