.background-triangle{
  position: fixed;
  top: 20vh;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff7eb3, #ff758c, #ff0000, #1e90ff);
  background-size: 300% 300%;
  clip-path: polygon(0 70%, 100% 40%, 100% 100%, 0% 100%);
  animation: gradientAnimation 8s infinite;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.reg-container{
    position: relative;
    z-index: 10;
    padding: 48px;
    border-radius: 8px;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.font-16{
    font-size: 16px;
}
.font-18{
    font-size: 18px;
}