/* Interaction Elements */

form.form-container.form-container-1 {
  position: static;
  display: grid;
  overflow: hidden;
  margin: 15px auto 0;
  padding: 0;
  min-width: 320px;
  max-width: 400px;
  width: auto;

  justify-self: center;
}

input[type=password].password-1 {
  display: block;
  margin: 10px auto;
  max-width: 300px;
  max-height: 30px;
  width: auto;

  justify-self: center;
}

input[type=email].email-1 {
  margin: 10px auto;
  max-width: 300px;
  max-height: 30px;
}

select.select.drop-down-2 {
  -moz-box-sizing: content-box;
       box-sizing: content-box;
  margin: 10px auto;
  padding-top: 1px;
  padding-bottom: 1px;
  min-width: 10px;
  max-width: 300px;
}

/* Layout Elements */

body.body-1 {
  margin-right: auto;
  margin-left: auto;
  background-color: #000;
}

.container.container-1 {
  margin-top: 80px;
  background-color: #000;
}

div.responsive-picture.picture-1 {
  margin-right: auto;
  margin-left: auto;
  min-width: 320px;
  max-width: 400px;
  width: auto;
}

button.button-1 {
  display: block;
  margin: 15px auto 5px;
  padding: 2px 6px 1px 5px;
  max-width: 100px;
  background-color: #fff;
  font-weight: 500;
  font-size: 15px;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;

  justify-self: center;
  
    /* ... your existing styles ... */
    
    /* This removes the default iOS "bubble" styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* Ensure the text color is explicitly set and has high contrast */
    color: black !important;
    background-color: white;
    border-radius: 0; /* Optional: iOS likes to round corners automatically */
}
  
}

@media screen and (max-width: 21.25rem) {
  div.responsive-picture.picture-1 {
    margin-bottom: 10px;
    width: 320px;
  }
}