
html,
body {
            height: 100%;
            font-family: "Josefin Sans", Sans-serif;
        }

      .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
      }

      @media (min-width: 768px) {
        .bd-placeholder-img-lg {
          font-size: 3.5rem;
        }
      }

      .b-example-divider {
        height: 3rem;
        background-color: rgba(0, 0, 0, .1);
        border: solid rgba(0, 0, 0, .15);
        border-width: 1px 0;
        box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
      }

      .b-example-vr {
        flex-shrink: 0;
        width: 1.5rem;
        height: 100vh;
      }

      .bi {
        vertical-align: -.125em;
        fill: currentColor;
      }

      .nav-scroller {
        position: relative;
        z-index: 2;
        height: 2.75rem;
        overflow-y: hidden;
      }

      .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
      }


.form-signin {
  max-width: 330px;
  padding: 15px;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}


/* ####################################################  */ 

body {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

#radius-shape-0 {
  height: 70px;
  width: 70px;
  top: -60px;
  left: 150px;
  background: radial-gradient(#ffd0c0, #ffffff);
  overflow: hidden;
  animation: animateRadiusShape2 8s infinite linear alternate;
  transform-origin: center;
  border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%;
  transform: rotate(90deg);
}

#radius-shape-1 {
  height: 120px;
  width: 120px;
  top: -60px;
  left: -130px;
  background: radial-gradient(#ffd0c0, #ffffff);
  overflow: hidden;
  animation: animateRadiusShape1 18s infinite linear alternate;
  transform-origin: center;
  border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%;
}


#radius-shape-2 {
  border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
  bottom: -60px;
  right: -110px;
  width: 300px;
  height: 300px;
  background: radial-gradient(#ffd0c0, #ffffff);
  overflow: hidden;
  animation: animateRadiusShape2 12s infinite linear alternate;
}

@media (max-width: 576px) {
  #radius-shape-1 {
    height: 100px;
    width: 100px;
    top: -15px;
    left: -40px;
  }

  #radius-shape-2 {
    bottom: -15px;
    right: -30px;
    width: 140px;
    height: 140px;
  }
}


@keyframes animateRadiusShape1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 200px) scale(1.1);
    transform: rotate(45deg);
    top: -160px;
    left: 0px;

  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes animateRadiusShape2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, -30px);
  }
  100% {
    transform: translate(0, 0);
  }
}


        .bg-glass {
          background-color: hsla(0, 0%, 100%, 0.9) !important;
          backdrop-filter: saturate(200%) blur(25px);
        }