html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Ensure body takes full viewport height */
    font-family: Arial, sans-serif;
    background-image: url('../auth/botImage2.png');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    /* Anchor image at the bottom */
    background-color: #A2C9F8;
}

.content {
    position: relative;
    z-index: 1;
    /* Ensure content appears above overlay */
    color: white;
    text-align: center;
    padding-top: 20px;
    /* Add padding at the top to create space */
}

.image {
    margin-top: 170px;
    width: 40%;
    height: auto;
    margin-bottom: 50px;
    /* Space between image and buttons */
}

.button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    /* Space between buttons and <p> */
}

.button {
    display: inline-block;
    padding: 20px 100px;
    background-color: #17469A;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 24px;
    /* Increased font-size for button text */
}

.button:not(:last-child) {
    margin-right: 10px;
}

.button:hover {
    background-color: #3A72B6;
    color: white;
}

.user_volunteer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    color: black;
    font-size: 20px;
}

/* Single raindrop style */
.raindrop {
  position: absolute;
  bottom: 100%;
  width: 2px;
  height: 15px;
  background: linear-gradient(to bottom, #a4c0f8, #17469a);
  border-radius: 50% / 70%;
  opacity: 0.7;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Animate raindrops with random delays & positions */
.raindrop:nth-child(1) {
  left: 10%;
  animation-duration: 1.1s;
  animation-delay: 0s;
}
.raindrop:nth-child(2) {
  left: 25%;
  height: 12px;
  animation-duration: 1.3s;
  animation-delay: 0.3s;
}
.raindrop:nth-child(3) {
  left: 40%;
  height: 17px;
  animation-duration: 1.4s;
  animation-delay: 0.5s;
}
.raindrop:nth-child(4) {
  left: 55%;
  height: 13px;
  animation-duration: 1.2s;
  animation-delay: 0.7s;
}
.raindrop:nth-child(5) {
  left: 70%;
  height: 14px;
  animation-duration: 1.1s;
  animation-delay: 1s;
}
.raindrop:nth-child(6) {
  left: 85%;
  height: 16px;
  animation-duration: 1.3s;
  animation-delay: 1.2s;
}
.raindrop:nth-child(7) {
  left: 20%;
  height: 12px;
  animation-duration: 1.5s;
  animation-delay: 1.4s;
}
.raindrop:nth-child(8) {
  left: 35%;
  height: 15px;
  animation-duration: 1.2s;
  animation-delay: 1.6s;
}
.raindrop:nth-child(9) {
  left: 60%;
  height: 13px;
  animation-duration: 1.4s;
  animation-delay: 1.8s;
}
.raindrop:nth-child(10) {
  left: 80%;
  height: 16px;
  animation-duration: 1.3s;
  animation-delay: 2s;
}

@keyframes fall {
  0% {
    transform: translateY(0);
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}
