.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;
}
  .logo {
    width: 150px;
    margin: 0 auto;
  }
  .form-container {
    max-width: 700px;
    margin: 0 auto;
    /* background-color: #111; */
    padding: 20px;
    border-radius: 0px;
  }
  .btn-primary {
    background-color: #0056e0;
    border: none;
  }
  .btn-primary:hover {
    background-color: #003bb5;
  }
  .divider {
    margin: 20px 0;
    font-weight: bold;
  }
  a {
    color: #00aaff;
    text-decoration: none;
  }
  a:hover {
    text-decoration: underline;
  }
  .checkbox-label {
    font-size: 0.9rem;
    color: #aaa;
  }
  .content-wrap1{
    display: none;
  }

/* Login Section */
  .login-section{
    width: 100%;
    /* background-color: #0f0f0f; */
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    /* margin-top: 15rem; */
    text-align: center;
}
.btn-primary {
    background-color: #0056e0; /* Custom blue color */
    border: none;
  }
  .btn-primary:hover {
    background-color: #003bb5;
  }
  .input-group-text {
    background-color: #000;
    color: #000;
  }
  .form-control {
    background-color: #000;
    border: none;
    border-radius: 0;
    color: #000;
  }
 
  .divider1 {
    margin: 20px 0;
    color: #000;
    font-weight: bold;
  }

  .content-wrap2 h1{
    font-weight: 1000;
    font-size: 4rem;
  }
  button svg {
    height: 24px;
    width: auto;
  }
  .form-control {
    padding: 0.8rem 1.8rem!important;
   border-radius: 30px!important;
}
  /* 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*/

  /* 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 */
