.bg-1{
    background-image: url("../img/voluteeringbg.jpg");
    background-size: cover;
    position:relative;
    height:350px;
    background-repeat: no-repeat;
    background-position: center center;
}
.t1{
    background-color: rgb(0,0,0,0.5);
    height: 350px;
    color: white;
    font-weight: bold;
    font-size: 35px;
    padding-top: 120px;
    text-align: center;
}
body {
  background-color: #e8f5e9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.volunteer-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border: 2px solid #a5d6a7;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 128, 0, 0.1);
}

.volunteer-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2e7d32;
}

.volunteer-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #33691e;
}

.volunteer-form input[type="text"],
.volunteer-form input[type="email"],
.volunteer-form input[type="password"],
.volunteer-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
  background-color: #f1f8e9;
}

.radio-group {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.radio-group label {
  font-weight: normal;
  color: #4e342e;
}

.volunteer-form textarea {
  resize: vertical;
}

.volunteer-form button {
  margin-top: 25px;
  width: 100%;
  background-color: #43a047;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.volunteer-form button:hover {
  background-color: #2e7d32;
}

