.pqrs-container{
  border-radius: 20px;
  background-color: white;
  padding: 2.5em;
}

.column{
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.gum-form {
  display: flex;
  gap: 4em;
}

label {
  display: block;
  margin: 1.5em 0 10px;
  color: #4b4b4b;
}

.contact-side select {width: 140px;}
form input, form select, textarea{font-family: 'Montserrat', sans-serif;}

form input, form select{
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-height: 40px;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #a5a5a5;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #bcbcbc;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

textarea{
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 133px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgb(73, 80, 87);
  background-color: rgb(255, 255, 255);
  background-clip: padding-box;
  border: 1px solid rgb(206, 212, 218);
  border-radius: 0.75rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-data {
  display: flex;
  gap: 2em;
}

.contact-side:first-child {width: 200px;}
.contact-side:last-child {width: 80%;}

.btn-send{
  max-width: 415px;
  width: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  background-color: #303f90;
  color: white;
  align-items: center;
  margin: 1.5em auto 0;
  justify-content: center;
  padding: 0 1em;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  gap: 0.4em;
  transition: .4s;
  border: 1px solid #303f90;
}

.btn-send:hover{
  color: #303f90;
  background-color: white;
}

/* Responsive Mode */
@media (max-width: 1100px){
  .gum-form {
    gap: 0;
    flex-direction: column;
  }

  .contact-side select {width: 100%;}
}

@media (max-width: 700px){
  h1 {margin-bottom: 0;}
  .pqrs-container {padding: 1.5em 1em;}

  label {margin: 1em 0 10px;}
  form input, form select {min-height: 30px;}
}