/* the badrock blues band */
/* kol, 2025-12-11 */

/*------------------*/
/* responsive form settings */
/*------------------*/

.responsive-form {
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  border: 2px solid #04AA6D;
  background-color:  #f2f2e2;
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  margin: 5px;
}

form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

p {  /* overwrites standard <p> */
  min-width: 100%;
  margin-bottom: 5px;
}

pbanking {
  min-width: 100%;
  color: #0033cc;
}

label {
  min-width: 37%;
  margin-bottom: 10px;
}

input[type=text] {
  min-width: 58%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  background-color: #ffffff;
}

input[type=text_zip] {
  min-width: 10%;
  max-width: 13%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  background-color: #ffffff;
}

input[type=text_city] {
  min-width: 40%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  background-color: #ffffff;
}

input[type=email] {
  min-width: 58%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  background-color: #ffffff;
}

select {
  min-width: 58%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  background-color: #ffffff;
}


textarea {
  min-width: 58%;
  height: 150px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
}

input[type=submit] {
  width: 100%;
  background-color: #04AA6D;
  color: white;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

@media screen and (max-width: 830px) {
  label,
  input[type=text],
  input[type=submit],
  select, textarea {
    flex: 100%;
    min-width: 100%;
  }
}

