.contact-form-container {
    max-width: 400px;
    margin: auto;
    text-align: center;
  }
  
  .form-control {
    border-radius: 12px !important;
    padding: 10px;
    margin-bottom: 0px !important;
    border: 1px solid #ccc;
    width: 100%;
  }
  
  .file-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
  }
  
  .file-wrapper {
    width: 48%;
    display: flex;
    justify-content: center;
  }
  
  .btn-upload {
    background: #E33F33;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    width: 100%;
    text-align: center;
  }
  
  .btn-upload i {
    margin-left: 5px;
  }
  
  input[type="file"] {
    display: none; 
  }

  .btn-submit {
    text-align: center;
    background: #E33F33;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 30%;
    margin-top: 15px;
    transition: background 0.3s ease;
    margin-left: 83px;
  }

  .btn-submit:hover {
    background: #000000;
    color: rgb(255, 255, 255);
    cursor: pointer;
  }

  /* Estilos generales del mensaje */
.wpcf7-response-output {
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    margin: 10px auto;
}

/* Mensaje de éxito (cuando el formulario se envía correctamente) */
.wpcf7-mail-sent-ok {
    color: #155724;
    background-color: #d4edda;
    border: 2px solid #c3e6cb;
}

/* Mensaje de error (cuando hay un problema con el envío) */
.wpcf7-mail-sent-ng {
    color: #721c24;
    background-color: #f8d7da;
    border: 2px solid #f5c6cb;
}

/* Mensaje de validación fallida (cuando faltan campos o hay errores) */
.wpcf7-validation-errors {
    color: #856404;
    background-color: #fff3cd;
    border: 2px solid #ffeeba;
}

/* Mensaje de envío en progreso */
.wpcf7-spinner {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}
