.contacto {
  margin-top: 90px;
  margin-bottom: 50px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.contenerdordiv{
  width: 450px;
  height: 550px;
  
  margin-right: 150px;
}
.contenerdordiv img{
  width: 100%;
}
.contacto form {
  padding: 5px 55px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  text-align: center;
  width: 340px;
}

.input-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.h_contacto {
  color: crimson;
  font-size: 35px;
}
.input-group label {
  color: var(--naranjaRecind);
  margin-left: 15px;
  padding: 5px 0;
}
.contacto input,
textarea {
  padding: 17px 25px;
  border-radius: 25px;
  margin-bottom: 20px;
  background-color: whitesmoke;
  border: 2px solid #ffac40;
  color: crimson;
  outline: none;
}
.contacto input::placeholder,
.contacto textarea::placeholder {
  color: #b0afae;
}
.form-text {
margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  display:none ;
}
.form-text a {
  color: #ffac40;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.btn_contacto{
  font-size: 16px;
  color: white;
  border: 0;
  border-radius: 25px;
  background: var(--naranjaRecind);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.btn_contacto:hover{
  filter: brightness(130%);
  background: #ff9100;
  font-weight: bold;
}
@media (max-width: 950px) {
  .contenerdordiv{
    display: none;
  }
  .contacto {
    margin-top: 80px;
    margin-bottom: 50px;
  }
  .contacto form {
    width: 70%;
  }

  
}