.form-section {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  max-width: 900px;
  width: 85%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  border-radius: 10px;
  border: 1px solid rgba(206, 206, 206, 0.8);

  margin: 3rem auto 0;
}

form {
  background-color: inherit;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
}

input {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(206, 206, 206, 0.8);
}

input[type="radio"],
input[type="checkbox"] {
  height: auto;
  margin: 0;
  padding: 0;
}

input:focus {
  outline: none;
}

#error {
  color: rgb(235, 43, 43);
  display: none;
}

.donation-description div,
.donation-duration div {
  display: flex;
  align-items: center;
  margin: 0.4rem 0;
  border-bottom: 1px dotted rgba(206, 206, 206, 0.8);
  padding-bottom: 0.4rem;
}

#donation-btn {
  cursor: pointer;
  width: 100%;
  padding: 1rem 0;
}


/* PARTNERSHIP */

.partnership-description{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* transform: translateX(50%); */
}
.partnership-description div,
.partnership-duration  div {
  display: flex;
  align-items: center;
  margin: 0.4rem 0;
  border-bottom: 1px dotted rgba(206, 206, 206, 0.8);
  padding-bottom: 0.4rem;
  width: 100% !important;
}

/* MEDAI QUERIES */
@media (max-width: 600px) {
  .donation-description {
    margin-top: 1.7rem;
  }
  .form-container{
    width: 97%;
    padding: 1rem 0;
  }

  .organization{
    margin-top:1.5rem;
  }
}

@media (min-width: 600px) {
  .form-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
