  body{
    background: #3399ff;
    overflow: hidden;
  }


  .circle{
    position: absolute;
    border-radius: 50%;
    background: white;
    animation: ripple 15s infinite;
    box-shadow: 0px 0px 1px 0px #508fb9;
  }

  .small{
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: -100px;
  }

  .medium{
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -200px;
  }

  .large{
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -300px;
  }

  .xlarge{
    width: 800px;
    height: 800px;
    left: -400px;
    bottom: -400px;
  }

  .xxlarge{
    width: 1000px;
    height: 1000px;
    left: -500px;
    bottom: -500px;
  }

  .shade1{
    opacity: 0.2;
  }
  .shade2{
    opacity: 0.5;
  }

  .shade3{
    opacity: 0.7;
  }

  .shade4{
    opacity: 0.8;
  }

  .shade5{
    opacity: 0.9;
  }

  @keyframes ripple{
    0%{
      transform: scale(0.8);
    }

    50%{
      transform: scale(1.2);
    }

    100%{
      transform: scale(0.8);
    }
  }

.transparent-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; /* Ensure it's above other content */
}

.transparent-div .modal-content {
    background-color: rgba(3, 0, 13, 0.55); /* White background for the modal content */
    padding: 20px;
    border-radius: 5px;
    margin-top: 100px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.transparent-div .modal-content input[type="email"],
.transparent-div .modal-content input[type="number"],
.transparent-div .modal-content input[type="password"],
.transparent-div .modal-content input[type="input"] {
    background-color: rgba(255, 255, 255, 0.027); /* Transparent white background */
    border: 1px solid #ccc; /* Add border for visibility */
    padding: 8px;
    border-radius: 5px;
    margin-top: 20px; /* Adjust as needed */
    color:azure;
    font-weight: lighter;
}
