.body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    padding: 20px;
}
*{
  scrollbar-width: thin;
  scrollbar-color: #fb8500 #222;
  scroll-behavior: smooth;
}
.register-section{
    width: 100%;
    /* background-color: #0f0f0f; */
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 8rem;
    text-align: center;
}

  .form-container {
    max-width: 600px;
    margin: 0 auto;
    /* background-color: #111; */
    padding: 20px;
    border-radius: 10px;
  }
  
  .divider {
    margin: 20px 0;
    font-weight: bold;
  }
 
  .checkbox-label {
    font-size: 0.9rem;
    color: #aaa;
  }
  /* .content-wrap1{
    display: none;
  } */
  .form-control {
    padding: 0.8rem 1.8rem!important;
    border-radius: 30px!important;
}
.title h1{
  font-size: 4rem;
  font-weight: 1000;
}
  /* animation logo start*/
  /* Animation */
.wave-background-login{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 70%;
    background: radial-gradient(circle, transparent, #fb8500, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: none;
    pointer-events: none;
  }
  .pulse-logo-login {
    position: relative;
    width: 30%;
    border-radius: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pulse-logo-login img{
    z-index: 2;
  }
  .pulse-logo-login .wave-background-login {
    animation: wave-effect 1.5s infinite ease-in-out;
    opacity: 1;
  }
  
  @keyframes wave-effect {
    0% {
      transform: translate(-50%, -50%) scale(0.5);
      opacity: 0.9;
    }
    50% {
      transform: translate(-50%, -50%) scale(1.5);
      opacity: 0.6;
    }
    100% {
      transform: translate(-50%, -50%) scale(2.5);
      opacity: 0.3;
    }
  }
  /* animation logo end*/
  @media only screen and (max-width:540px){
    .title h1 {
      font-size: 3rem;
      font-weight: 1000;
  }
  }
  /* animation logo end*/
  @media only screen and (max-width:414px){
    .title h1 {
      font-size: 2.5rem;
      font-weight: 1000;
  }
  }
  /* animation logo end*/
 
  /* Back to top Css */
.button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  z-index: 1000;
  display: none;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.button:hover {
  background-color: #222;
}
/* Back to top Css */
