.form-container{
  padding: 5%;
  background-color: rgb(17 17 37);
  display: flex;
  gap: 3%;
  align-items: stretch;
}



.form-contacto input[type=text],.form-contacto select,.form-contacto textarea {
  background-color: rgb(182 182 244);
  width: 100%;
  padding: 12px;
  border: 1px solid #7a7777;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

.form-contacto input[type=submit] {
  background-color: rgb(4 76 170);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-contacto input[type=submit]:hover {
  background-color: rgb(8 70 151);
}

#subject::placeholder , #ftemail::placeholder , #fname::placeholder , #fsurname::placeholder, #ftelephone::placeholder {
  color: rgb(90, 86, 86);
  opacity: 1; /* asegura que no quede grisáceo en algunos navegadores */
}


.container {
  border-radius: 5px;
  background-color: rgb(192 192 255);
  padding: 20px;
}

.row {
  display: flex;
  gap: 3%;
}

.box {
  background-color: rgb(36 36 99);
  color: white;
  border-radius: 25px;
  text-align: center;
  padding: 10px;
}

.box > .body {
  text-decoration: none;
  color: #cbcbcb;
}

.box > .header-image {
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: auto;
  margin-top: -25px;
  text-align: center;
  background-color: rgb(48 48 130);
}

.box > .header-image > i{
  margin-top: 8px;
}

.box > .header2 {
  font-size: 24px;
}

.contacto-texto {
  margin: 0 auto;
  padding: 2rem;
  text-align: justify;
  display: flex;
  flex-direction: column;
  background-color: rgb(29, 29, 67);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contacto-texto-p {
  color: #eaeaea;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.recaptcha-container {
  transform: scale(0.7);
  transform-origin: 0 0; /* esquina superior izquierda */
  height: 60px;          /* ajusta según el scale */
}

@media screen and (max-width: 743px){
  .contacto-texto-p {
    font-size: 0.8rem
  }
  .recaptcha-container {
    transform: scale(0.6);
  }
}


