body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.background-overlay {
  background: url('images/logo.png') no-repeat center center fixed;
  background-size: contain;
  background-color: rgba(255, 255, 255, 0.85);
  min-height: 100vh;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .background-overlay {
    background-size: cover;
  }
  .overlay {
    padding: 15px;
  }
}

/* Button styling (example) */
.btn-register,
.btn-volunteer {
  display: inline-block;
  padding: 10px 20px;
  background-color: #039BE5;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}

.btn-register:hover,
.btn-volunteer:hover {
  background-color: #0277BD;
}

.btn-register,
.btn-volunteer {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #039BE5;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-register:hover,
.btn-volunteer:hover {
  background-color: #0277BD;
  text-decoration: none;
  color: #fff;
}

