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 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    padding: 30px;
}

/* Logo Container */
.logo-container {
    margin-bottom: 20px;
    text-align: center;
}

/* Right Side Container */
.right-container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

/* Title */
h2.admin-register {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 30px;
}

/* Input Container */
.input-container {
    margin-bottom: 20px;
}

.input-container input[type="text"],
.input-container input[type="email"],
.input-container input[type="tel"],
.input-container input[type="date"],
.input-container input[type="password"],
.input-container select,
.input-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

/* Focus State for Inputs */
.input-container input:focus,
.input-container select:focus,
.input-container textarea:focus {
    border-color: #3A72B6;
    outline: none;
}

/* Radio Buttons */
.input-container.radiobutton label {
    margin-right: 15px;
    font-size: 14px;
    color: #555;
}

.input-container textarea {
    height: 80px;
    resize: none;
}

/* Checkbox Terms */
.input-container label {
    font-size: 14px;
    color: #333;
}

/* Submit Button */
.button-container {
    text-align: center;
}

.button-container input[type="submit"] {
    background-color: #3A72B6;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Hover Effect for Submit Button */
.button-container input[type="submit"]:hover {
    background-color: #0b7dda;  /* Darker blue on hover */
}

/* Link Hover State */
.user_volunteer a:hover {
    text-decoration: underline;
}

/* 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 */
}
