html, body {
  padding: 0;
  margin: 0;
}

body {
  background-color: rgba(237, 245, 247, 1);
  background-image: url(./images/pattern.png);
  background-repeat: repeat;
  background-size: auto;
  padding: 0 16px;
}

.container {
  display: flex;
  flex-direction: column;
  align-content: center;
  /*padding-top: 320px;*/
}

.b24-form {
  position: relative;
  z-index: 10;
}

.logo {
  position: relative;
  width: 440px;
  max-width: 100%;
  margin: 60px auto 40px;
  z-index: 3;
}

.water {
  position: absolute;
  left: 50%;
  max-width: 100%;
  transform: translate(-50%, 0);
  top: 285px;
  z-index: 4;
}

.figure {
  position: absolute;
  left: 0;
  transform: translate(-100%, 0);
  top: 0;
  z-index: 3;
}

.figure2 {
  left: auto;
  right: 0;
  transform: translate(110%, 0);
}

.b24-form-sign {
  display: none !important;
}

.b24-form-wrapper {
  position: relative;
}

.b24-form-wrapper > div {
  position: relative;
  z-index: 4;
}

.ellipse {
  position: fixed;
  width: 1114px;
  max-width: 100%;
  height: 1355px;
  left: 50%;

  transform: translate(-50%, 0);
  top: 0;

  background: #EDF5F7;
  filter: blur(55px);
  z-index: 2;
}

@media all and (max-width: 768px) {
  body {
    padding-bottom: 30px;
  }

  .logo {
    width: 200px;
    margin: 40px auto 30px;
  }

  .water,
  .figure {
    display: none;
  }

  .ellipse {
    top: -30px;
  }
}