#page-contacto {
  padding-top: 3rem;

  .form-container {
    box-shadow: 0 5px 25px 0 rgb(0 0 0 / .1);
    padding: 1rem;
  }

  .sub-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
  }

  .recaptcha-container {
    display: block;
    height: 60px;
    width: 300px;
    overflow: hidden;
    position: relative;
    border: 1px solid #dddbda;
    border-radius: .25rem;

    .g-recaptcha {
      position: absolute;
      top: -5px;
      left: -1px;
    }
  }

  .slds-has-error .recaptcha-container:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: #c23934 0 0 0 1px inset;
    border-radius: .25rem;
    pointer-events: none; 
  }

  #btnSend {
    height: 60px;
  }

  .feature-box {
    background: #fff;
    padding: 28px 40px;
    border-radius: 3px;
    box-shadow: 0 3px 25px rgb(0 0 0 / .07);
    /* margin-top: 2rem; */

    .feature-icon {
      flex: 0 0 50px;
      margin-right: 25px;
      margin-bottom: 0;
      position: relative;
      top: 5px;
      font-size: 40px;
      color: var(--color-red-one);
    }

    .feature-title {
      font-size: 1.5rem;
      line-height: 34px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--color-gray-dark);
    }
  }

  .feature-box.feature-icon-left {
    display: flex;
  }

  .message {
    display: none;
    padding: 20px 0;
    text-align: center;
    color: rgb(156, 0, 31);
  }
}