body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    background-image: url('../auth/botImage2.png'); 
    background-size: cover;  /* Makes the image cover the entire page */
    background-position: center;  /* Centers the background image */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
}

.content {
    padding: 20px;
    box-sizing: border-box;
}


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

.button-container {
    display: flex;
    justify-content: center;

    margin-top: 20px;
    /* Space between buttons and <p> */
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 100px;
    background-color: #17469A;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 24px;
    border: none;
    outline: none;
}

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

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

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

.right-container {
    background-color: #FFFFFF;
    border-radius: 40px;
    width: 50%;
    margin: 0 auto; /* This centers the block horizontally */
    padding-top: 40px; /* <-- Add this line to increase top space */
}

.left-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-container {
    display: flex;
    flex: 1;
    align-items: center;
    margin-left: 70px;
    margin-right: 70px;
}

.admin-login {
    color: black;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.input-container input[type="text"],
.input-container input[type="password"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #CCC;
    width: 450px;
    font-size: 25px;
    text-align: center;
}


.input-container input[type="tel"],
.input-container input[type="email"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #CCC;
    width: 450px;
    font-size: 25px;
    text-align: center;
}

.admin-register {
    color: black;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 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;
  }
}

.show-password-container {
    margin-top: 10px;
    font-size: 14px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px; /* adds space between checkbox and label */
}

